/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevenir scroll horizontal */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.2rem); /* Tamanho responsivo */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem); /* Tamanho responsivo */
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

/* Linha decorativa sob H2 */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border-radius: 2px;
}

p {
    font-size: clamp(1rem, 1.8vw, 1.1rem); /* Tamanho responsivo */
    margin-bottom: 20px;
}

a {
    color: #00c6ff; /* Azul vibrante para links */
    text-decoration: none;
}

a:hover {
    text-decoration: none; /* Remove sublinhado padrão no hover */
}

section {
    padding: 80px 0;
}

.highlight-blue {
    color: #00c6ff; /* Azul vibrante */
    font-weight: 600;
}

.icon-blue {
    color: #007bff; /* Azul primário para ícones */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* --- Estilo do Botão CTA Principal --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Gradiente azul */
    color: #ffffff;
    padding: 15px 35px;
    font-size: clamp(1rem, 2vw, 1.2rem); /* Tamanho responsivo */
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 50px; /* Bordas arredondadas */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4); /* Sombra azul */
    margin-top: 20px;
    text-align: center;
}

.cta-button i { /* Ícone dentro do botão */
    margin-left: 10px;
    font-size: 1.1em; /* Tamanho relativo ao botão */
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02); /* Efeito de levantar e leve zoom */
    box-shadow: 0 8px 20px rgba(0, 198, 255, 0.6); /* Sombra mais intensa */
    filter: brightness(1.1); /* Leve brilho */
}

/* Animação de Pulso */
.pulse {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0, 198, 255, 0.7); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4); }
}


/* --- Seção Hero --- */
.hero {
    background: #000; /* Fundo preto sólido para contraste */
    padding: clamp(80px, 15vh, 120px) 0 clamp(100px, 20vh, 150px) 0; /* Padding responsivo */
    text-align: center;
    position: relative;
    overflow: hidden; /* Para conter o shape */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem); /* Responsivo */
    font-weight: 300;
    max-width: 700px;
    margin: 20px auto 30px auto;
    color: #cccccc; /* Cinza um pouco mais claro */
}

.hero .cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Vídeo Hero */
.hero-video-container {
    max-width: 720px;
    margin: 40px auto;
    position: relative;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25);
}

.hero-video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Embed Responsivo (se usar iframe) */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
    border-radius: 10px;
}

/* Forma Decorativa Hero */
.hero-shape {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0));
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}


/* --- Seção Problema / Solução --- */
.problem-solution {
    background-color: #111111; /* Um tom ligeiramente mais claro que o preto */
    text-align: center;
}

.problem-solution .container {
    max-width: 800px; /* Conteúdo mais focado */
}

.problem-solution .solution-intro {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem); /* Responsivo */
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
}


/* --- Seção Benefícios --- */
.benefits {
    background-color: #0a0a0a; /* Volta pro preto */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grid responsivo */
    gap: 30px; /* Espaço entre os itens */
    margin-top: 50px;
}

.benefit-item {
    background-color: #1a1a1a; /* Fundo dos cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222; /* Borda sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #007bff; /* Detalhe azul na borda */
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}


/* --- Seção Sobre a Mentora --- */
.about-mentor {
    background-color: #111111;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.placeholder-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background-color: #333;
    border-radius: 50%; /* Foto redonda */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #007bff;
    overflow: hidden; /* Garante que a imagem não saia do círculo */
}

.placeholder-photo img { /* Estilo para a imagem real */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a área sem distorcer */
}

.about-text {
    flex-grow: 1;
}

/* Estilo para o número do contador animado */
.counter-number {
    color: #00c6ff;      /* Azul vibrante principal */
    font-weight: 700;    /* Negrito para destaque */
    font-size: 1.2em;    /* Ligeiramente maior */
    vertical-align: baseline; /* Ajuda no alinhamento */
    /* text-shadow: 0 0 5px rgba(0, 198, 255, 0.3); */ /* Opcional: brilho */
}


/* --- Seção Depoimentos --- */
.testimonials {
    background-color: #111111;
    padding: 80px 0;
}

.testimonials h2 {
    margin-bottom: 20px;
}

.testimonials .testimonials-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #cccccc;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #1a1a1a;
    padding: 35px 30px 30px 30px;
    border-radius: 10px;
    border: 1px solid #252525;
    border-top: 4px solid #007bff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    color: #007bff;
    opacity: 0.15;
}

.testimonial-item p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-full {
    display: none; /* Começa escondido */
}

.expand-testimonial {
    background: none;
    border: none;
    color: #00c6ff;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.expand-testimonial i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.expand-testimonial:hover {
    color: #ffffff;
}

.testimonial-item.expanded .expand-testimonial i {
    transform: rotate(180deg);
}

.testimonial-author {
    font-size: 0.95rem;
    color: #cccccc;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #333;
    text-align: left;
}

.testimonial-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #00c6ff;
    font-style: italic;
}


/* --- Seção CTA Final --- */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyMzYyNXwwfDF8c2VhcmNofDF8fHRlY2hub2xvZ3klMjBkYXJrfGVufDB8fHx8MTY3ODg4OTMxMg&ixlib=rb-4.0.3&q=80&w=1080') no-repeat center center/cover; /* Imagem de fundo tecnológica */
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    max-width: 600px;
    margin: 15px auto 30px auto;
}

.final-cta .cta-subtext-final {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #b0b0b0;
}


/* --- Seção: O Método Explicado --- */
/* Estilos base definidos inline no HTML, adicione regras aqui se preferir */
.method-explained {
    background-color: #0a0a0a; /* Confirmando fundo */
    padding: 80px 0;
}
.method-explained h3 {
    color: #00c6ff;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.method-explained ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.method-explained li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}
.method-explained li i { /* Estilo para os ícones da lista */
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.5rem;
}


/* --- Seção Instagram Follow --- */
.instagram-follow {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 60px 0;
    text-align: center;
}

.instagram-link {
    display: inline-block;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.icon-wrapper {
    margin-bottom: 15px;
}

.instagram-icon-large {
    font-size: 5rem;
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.4),
                 0 0 20px rgba(0, 198, 255, 0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.instagram-link:hover .instagram-icon-large {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                 0 0 25px rgba(255, 255, 255, 0.4);
}

.instagram-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}


/* --- Rodapé --- */
footer {
    background-color: #050505; /* Um pouco diferente do preto */
    color: #888888;
    padding: 40px 0 30px 0; /* Mais padding superior */
    text-align: center;
    font-size: 0.9rem;
}

.social-icons {
    margin-bottom: 20px; /* Espaço antes do copyright */
}

.social-icons a {
    color: #a0a0a0; /* Cinza claro */
    font-size: 1.8rem; /* Tamanho dos ícones */
    margin: 0 15px; /* Espaçamento horizontal */
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #00c6ff; /* Azul vibrante no hover */
    transform: translateY(-3px); /* Efeito suave de levantar */
}

footer .copyright {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

footer p a { /* Estilo para links de política, etc. */
    color: #888888;
    text-decoration: underline;
}

footer p a:hover {
    color: #00c6ff;
}


/* --- Media Queries para Responsividade --- */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .about-flex {
        flex-direction: column; /* Empilha foto e texto */
        text-align: center;
    }
    .placeholder-photo {
        margin-bottom: 30px;
        width: 150px;
        height: 150px;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .testimonials-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-video-container {
        max-width: 90%; /* Ocupa mais da largura */
    }

    .social-icons a {
        font-size: 1.6rem;
        margin: 0 10px;
    }

    .instagram-icon-large {
        font-size: 4rem; /* Reduz ícone do insta em mobile */
    }
    .instagram-cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .hero { padding: 60px 0 80px 0; }
    .hero .subtitle { font-size: 1rem; }
    p { font-size: 0.95rem; }

    .hero-video-container { margin: 25px auto; }

    .benefit-item, .testimonial-item { padding: 25px 20px; } /* Menos padding nos cards */
}