:root {
    --primary-color: #ff3366;
    --secondary-color: #1a1a1a;
    --accent-color: #ff336620;
    --text-color: #ffffff;
    --dark-bg: #0a0a0a;
    --gradient: linear-gradient(135deg, #ff3366 0%, #ff6b6b 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header/Nav */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .inscreva-se {
    background: var(--gradient);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
}

.nav-links .inscreva-se:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.nav-links .inscreva-se::after {
    display: none;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-mobile span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Menu Mobile */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Menu ocupa tela toda */
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        /* Centraliza itens verticalmente */
        padding: 80px 40px;
        transition: all 0.4s ease;
        gap: 25px;
        display: flex !important;
        /* Força display flex */
    }

    .nav-links.active {
        right: 0;
    }

    .menu-mobile {
        display: flex;
        position: relative;
        z-index: 1002;
        /* Garante que fique acima do menu */
    }

    .menu-mobile.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links a {
        font-size: 18px;
        /* Fonte maior para mobile */
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        text-align: center;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Efeito cascata nos links */
    .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links a:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-links a:nth-child(8) {
        transition-delay: 0.8s;
    }

    /* Estilo especial para o botão de inscrição no mobile */
    .nav-links .inscreva-se {
        margin-top: 20px;
        padding: 15px 40px;
        font-size: 18px;
        /* width: 200px; */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 30px;
    }

    .nav-links {
        padding: 60px 20px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-links .inscreva-se {
        /* width: 180px; */
        padding: 12px 30px;
    }
}

/* Hero Section - Estilo Moderno e Elegante */
.hero {
    margin-top: 85px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, var(--primary-color) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--primary-color) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.06;
    animation: backgroundMove 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(60px);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    min-height: calc(100vh - 85px);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    color: var(--text-color);
}

.hero-title span {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1s ease forwards 1s;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.comece-agora {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    color: var(--text-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.comece-agora:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.countdown {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.countdown-header {
    text-align: left;
    margin-bottom: 15px;
}

.countdown-header span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.countdown-item {
    background: linear-gradient(145deg,
            rgba(255, 51, 102, 0.1),
            rgba(255, 51, 102, 0.05));
    min-width: 70px;
    padding: 15px 10px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 51, 102, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: countPulse 2s infinite;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Botões e CTAs */
.btn-primary,
.inscreva-se,
.comece-agora {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    color: var(--text-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary::before,
.inscreva-se::before,
.comece-agora::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    z-index: -1;
    transition: 0.75s ease;
}

.btn-primary:hover,
.inscreva-se:hover,
.comece-agora:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover::before,
.inscreva-se:hover::before,
.comece-agora:hover::before {
    left: 100%;
}

.btn-primary:active,
.inscreva-se:active,
.comece-agora:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 51, 102, 0.2);
}

.btn-primary::after,
.inscreva-se::after,
.comece-agora::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg,
            var(--primary-color),
            #ff6b6b,
            var(--primary-color));
    z-index: -2;
    border-radius: 52px;
    animation: borderGlow 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after,
.inscreva-se:hover::after,
.comece-agora:hover::after {
    opacity: 1;
}

.comece-agora {
    background: linear-gradient(45deg, #ff3366, #ff6b6b, #ff3366);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
    font-size: 16px;
    padding: 18px 45px;
}

.comece-agora:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes countPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        height: auto;
        margin-top: auto;
    }

    .hero-content {
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .cta-section {
        align-items: center;
    }

    .comece-agora {
        text-align: center;
        padding: 15px 20px;
        font-size: 14px;
    }

    .countdown {
        /* max-width: 100%; */
        padding: 15px 20px;
    }

    .countdown-header span {
        font-size: 12px;
        text-align: center;
    }

    .countdown-timer {
        gap: 5px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 5px;
    }

    .countdown-number {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .nav-links {
        display: none;
    }

    .menu-mobile {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 6px 2px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 7px;
    }
}


/* About Section */
.about {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-video {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-top: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo cubra todo o espaço */
    border-radius: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features li {
        justify-content: center;
    }

    .about-video {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-features li {
        font-size: 0.9rem;
    }
}

/* Seções Gerais e Utilitários */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Seção Metodologia */
.methodology {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(26, 26, 26, 0.97));
    position: relative;
    overflow: hidden;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

/* Seção Benefícios */
.benefits {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Seção Depoimentos */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(26, 26, 26, 0.97));
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    margin: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Seção FAQ */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(26, 26, 26, 0.97));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Footer Estilizado */
.footer {
    background: linear-gradient(to top, #0a0a0a, rgba(10, 10, 10, 0.95));
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 1024px) {
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Para Quem é a Mentoria */
.for-whom {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.98));
    position: relative;
    overflow: hidden;
}

.for-whom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.for-whom-text {
    padding-right: 40px;
}

.for-whom-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.for-whom-list {
    list-style: none;
    padding: 0;
}

.for-whom-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.for-whom-list li:hover {
    transform: translateX(10px);
}

.for-whom-list i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.for-whom-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.for-whom-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.for-whom-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.for-whom-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.2), transparent);
    border-radius: 20px;
}

/* Minha Experiência */
.my-experience {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.my-experience-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.my-experience-text {
    padding-right: 40px;
}

.my-experience-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.my-experience-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.my-experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.my-experience-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.my-experience-image:hover img {
    transform: scale(1.05);
}

/* Formato e Como Funciona */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(26, 26, 26, 0.97));
    position: relative;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works .step {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.how-it-works .step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.how-it-works .step:hover::before {
    transform: scaleX(1);
}

/* Bônus e Diferenciais */
.bonuses {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, var(--primary-color) 0%, transparent 60%);
    opacity: 0.05;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonuses-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonuses-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bonuses-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bonuses-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.bonuses-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.bonuses-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 16px;
}

.bonuses-card .bonuses-features {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.bonuses-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.bonuses-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* Garantia de Satisfação - Corrigido */
.guarantee {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97), rgba(26, 26, 26, 0.97));
    position: relative;
    overflow: hidden;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.guarantee-image {
    flex: 0 0 auto;
    position: relative;
}

.guarantee-image img {
    max-height: 200px;
    filter: drop-shadow(0 10px 20px rgba(255, 51, 102, 0.2));
    animation: float 3s ease-in-out infinite;
}

/* Invista no seu Futuro - Melhorado */
.invest {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.invest::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
}

.invest-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.invest-header {
    margin-bottom: 60px;
}

.invest-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.invest-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.invest-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.invest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.invest-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.invest-card.featured {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 107, 0.1));
    transform: scale(1.05);
}

.invest-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 500;
}

.invest-price {
    font-size: 42px;
    color: var(--primary-color);
    margin: 20px 0;
    font-weight: 700;
}

.invest-price span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animações */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .guarantee-image img {
        max-height: 150px;
    }

    .invest-title {
        font-size: 36px;
    }

    .invest-card.featured {
        transform: scale(1);
    }
}

/* Galeria */
.gallery {
    padding: 120px 0;
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 1024px) {

    .for-whom-content,
    .my-experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .how-it-works-steps {
        grid-template-columns: 1fr;
    }

    .for-whom-text,
    .my-experience-text {
        padding-right: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* @media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
} */

/* Pricing Section - Versão 2.0 */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -30px;
}

.price-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 107, 0.1));
    transform: translateY(-10px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 500;
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: var(--primary-color);
}

.price .currency {
    font-size: 24px;
    font-weight: 500;
}

.price .amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.card-benefits {
    margin: 40px 0;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

.features li i {
    color: #00ff88;
    font-size: 20px;
}

.card-footer {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.guarantee {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee i {
    color: var(--primary-color);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .price-card {
        padding: 30px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price .amount {
        font-size: 48px;
    }

    .features li {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}