/* ============================================================
   RCONECT WORLD — HOME PAGE NEON SUPREME 2025
   Desenvolvido por Djalma Junior | Barrinha-SP
   Estilo exclusivo para a página inicial
=============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0d0d10;
    --bg-gradient: radial-gradient(circle at top, #17141f, #0d0d10 70%);
    --neon: #9b59ff;
    --neon-strong: #b76bff;
    --text-light: #ffffff;
    --text-gray: #cfcfcf;
    --card-bg: #16161d;
    --card-border: rgba(155, 89, 255, 0.4);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ============================================================
   HERO PRINCIPAL
=============================================================== */

.home-hero {
    width: 100%;
    padding: 120px 25px 150px;
    position: relative;
    text-align: center;
}

.home-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.neon {
    color: var(--neon);
    text-shadow: 0 0 12px rgba(155, 89, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 750px;
    margin: 0 auto 30px;
}

.hero-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero {
    padding: 15px 35px;
    background: var(--neon);
    color: #000;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 18px rgba(155, 89, 255, 0.5);
}

.btn-hero:hover {
    background: var(--neon-strong);
    box-shadow: 0 0 28px rgba(155, 89, 255, 0.8);
}

.btn-hero-outline {
    padding: 15px 35px;
    border: 2px solid var(--neon);
    color: var(--neon);
    background: transparent;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 25px rgba(155, 89, 255, 0.6);
}

/* ============================================================
   BENEFÍCIOS
=============================================================== */

.beneficios-section {
    padding: 100px 25px;
    text-align: center;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 45px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.beneficio-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 0 8px rgba(155, 89, 255, 0.15);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(155, 89, 255, 0.35);
    border-color: var(--card-border);
}

.beneficio-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--neon);
}

.beneficio-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

/* ============================================================
   CTA PARA PLANOS
=============================================================== */

.cta-planos {
    padding: 100px 25px;
    text-align: center;
}

.cta-planos h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--neon);
}

.cta-planos p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.btn-cta {
    padding: 15px 40px;
    background: var(--neon);
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 18px rgba(155, 89, 255, 0.5);
}

.btn-cta:hover {
    background: var(--neon-strong);
    box-shadow: 0 0 35px rgba(155, 89, 255, 0.8);
}

/* ============================================================
   ACESSOS RÁPIDOS
=============================================================== */

.atalhos-section {
    padding: 100px 25px;
    text-align: center;
}

.atalhos-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.atalho-card {
    padding: 20px 25px;
    background: var(--card-bg);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--neon);
    transition: 0.25s;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 10px rgba(155, 89, 255, 0.15);
}

.atalho-card:hover {
    transform: translateY(-8px);
    background: #1c1c24;
    border-color: var(--card-border);
    text-shadow: 0 0 10px rgba(155, 89, 255, 0.8);
}

/* ============================================================
   RESPONSIVIDADE
=============================================================== */

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
