/* Variáveis e Cores ==================== */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-primary: #00ff66;
    /* Verde Neon para "Greens" */
    --accent-glow: rgba(0, 255, 102, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

/* Reset Básico ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Estilo "Dark Glassmorphism" ==================== */
.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.glow-2 {
    bottom: 20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Espaçamento e Containers ==================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.text-center {
    text-align: center;
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 800;
}

.highlight {
    color: var(--accent-primary);
}

/* Seção 1: Hero ==================== */
.hero {
    min-height: auto;
    /* Deixa o próprio conteúdo ditar o tamanho, removendo o vazio forçado de 85vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    /* Espaçamento menor em cima e embaixo (antes tinha muito vazio) */
    position: relative;
    overflow: hidden;

    /* Background escuro premium em degradê radial */
    background: radial-gradient(circle at top, #0f1a14 0%, var(--bg-color) 70%);
    border-bottom: 1px solid var(--glass-border);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    /* Garante que ficará acima do background */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Espaçamento mais bonito entre textos */
}

.glitch-text {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;

    /* Degradê prata metálico no título principal */
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    margin: 0;
    font-weight: 500;
    color: #e0e0e0;
}

.subtitle .highlight {
    font-weight: 800;
    color: var(--accent-primary);
    text-shadow: 0 0 15px var(--accent-glow);
}

.description {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 400;
}

/* Botões Modernos e Animados ==================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent-primary);
    color: #000;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
    border: 2px solid var(--accent-primary);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
    background: #00e05a;
}

.cta-button.outline {
    background: transparent;
    color: var(--accent-primary);
}

.cta-button.outline:hover {
    background: rgba(0, 255, 102, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

.cta-button i {
    font-size: 1.5rem;
}

/* Seção 2: Sobre / Imagem ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
    /* Efeito de Zoom na foto ao passar o mouse */
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

/* Seção 3: Benefícios Card Grid ==================== */
.benefits {
    padding: 4rem 2rem;
}

.benefits .section-title {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 102, 0.3);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-primary);
    font-size: 2.2rem;
}

.benefit-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer ==================== */
footer {
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.agency {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.agency a {
    color: var(--accent-primary);
    text-decoration: none;
}

/* Responsividade Mobile ==================== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 3rem 1.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
        /* Reduz muito o vazio no topo da tela do celular */
        padding-bottom: 2rem;
        /* Reduz vazio abaixo do botão */
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}