/* ============================================
   COMPONENTS CSS - Botões, Cards, Hero, Serviços
   ============================================ */

/* ========== BOTÕES - Poppins 600 ========== */
.btn-primary {
    background: var(--yellow);
    border-radius: var(--radius-lg);
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    text-align: center;
    color: var(--purple);
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #e6b01a;
    color: var(--purple);
}

.btn-link {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
}

.btn-link:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.btn-outline {
    border: 2px solid var(--purple);
    border-radius: var(--radius-lg);
    padding: 10px 24px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--purple);
    transition: all 0.3s;
    background: transparent;
    text-align: center;
}

.btn-outline i {
    margin-right: 8px;
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline-white {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline-white i {
    margin-right: 8px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-2px);
}

/* ========== HERO CORRIGIDO ========== */
.hero {
    min-height: 100vh; 
    min-height: 100svh; 
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.hero-swiper, 
.hero-swiper .swiper-slide {
    height: 100%;
    min-height: 100svh;
}

.hero-swiper .swiper-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ========== BACKGROUNDS CORRIGIDOS - RESPONSIVOS ========== */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 68, 166, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.slide-bg-1 {
    background-image: url('../assets/banner1fisiogio.png');
    background-position: 70% center;
}

.slide-bg-2 {
    background-image: url('../assets/banner3fisiogio.png');
    background-position: center;
}

.slide-bg-3 {
    background-image: url('../assets/banner3fisiogio.png');
    background-position: center;
}

/* Grid 2 colunas do Hero */
.hero-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

/* Coluna de texto do Hero */
.hero-text-col h1 {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-col h1 .highlight {
    color: var(--yellow);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust span i {
    color: var(--yellow);
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--purple);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-badge i {
    margin-right: 8px;
}

/* ========== SLIDE 1 - CARD INSTAGRAM ========== */
.hero-instagram-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    max-width: 380px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.instagram-profile {
    width: 100%;
}

.profile-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.profile-stats-row {
    display: flex;
    gap: 20px;
    flex: 1;
}

.profile-stats-row .stat-item {
    text-align: center;
}

.profile-stats-row .stat-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}

.profile-stats-row .stat-item span {
    font-size: 12px;
    color: var(--text-light);
}

.profile-username {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.profile-fullname {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.profile-bio p {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.profile-link a {
    font-size: 13px;
    color: #00376b;
    text-decoration: none;
}

/* ========== SLIDE 2 - VÍDEO COM BOTÃO SOBREPOSTO ========== */
.hero-video-col {
    display: flex;
    justify-content: flex-end;
}

.video-overlay-card {
    position: relative;
    max-width: 450px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.play-btn-overlay-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-overlay-large i {
    font-size: 32px;
    color: var(--purple);
    margin-left: 5px;
}

.play-btn-overlay-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

/* ========== SLIDE 3 - DEPOIMENTOS PRINT ========== */
.testimonials-print-content {
    text-align: center;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.testimonials-print-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.2;
}

.testimonials-print-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.print-depo-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.print-depo-card:hover {
    transform: translateY(-10px);
}

.print-depo-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.print-depo-card:hover img {
    border-color: var(--yellow);
}

.testimonials-print-btn .btn-primary {
    background: var(--yellow);
    color: var(--purple);
    font-size: 18px;
    padding: 16px 36px;
}

.testimonials-print-btn .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

/* ========== CARDS FLUTUANTES - EFEITO PREMIUM SUTIL ========== */
.floating-cards {
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: transparent;
    overflow-x: hidden;
    padding: 60px 0 20px;
}

.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.pain-card {
    border-radius: 28px;
    padding: 40px 25px 45px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

/* HOVER - elevação suave */
.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15), 0 5px 12px rgba(0, 0, 0, 0.08);
}

/* ÍCONE - escala suave */
.pain-card-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 100%;
}

.pain-card:hover .pain-card-icon {
    transform: scale(1.08);
}

.card-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

/* TÍTULO - escala + cor + efeito de brilho */
.pain-card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-card-title {
    transform: scale(1.03);
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* DIVISOR - expansão */
.pain-card-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 20px auto;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-card-divider {
    width: 90px;
    background: rgba(255, 255, 255, 0.9);
}

/* TEXTO - leve elevação + cor mais vibrante */
.pain-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-card-text {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
}

/* EFEITO SHINE - luz passando (opcional, mas muito elegante) */
.pain-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    border-radius: 28px;
}

.pain-card:hover::after {
    left: 100%;
}

/* CORES DOS CARDS */
.pain-card-blue {
    background: linear-gradient(135deg, #2DA8FF 0%, #1E88E5 100%);
}

.pain-card-green {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
}

.pain-card-orange {
    background: linear-gradient(135deg, #FF7A2F 0%, #E65100 100%);
}

.pain-card-pink {
    background: linear-gradient(135deg, #D633A6 0%, #AD1457 100%);
}

.pain-card-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .pain-card {
        padding: 35px 20px 40px;
    }
    
    .pain-card-title {
        font-size: 22px;
    }
    
    .pain-card-text {
        font-size: 14px;
    }
    
    .pain-card:hover .pain-card-title {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .pain-card:hover {
        transform: translateY(-5px);
    }
    
    .pain-card-title {
        font-size: 20px;
    }
    
    .pain-card:hover .pain-card-title {
        transform: scale(1.01);
    }
    
    .pain-card:hover .pain-card-text {
        transform: translateY(-1px);
    }
}
/* ========== ONDAS PADRONIZADAS ========== */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
    background: transparent;
}

/* Variações de cores das ondas */
.wave-light svg path {
    fill: #FFFFFF;
}

.wave-gray svg path {
    fill: #F8F9FC;
}

.wave-purple svg path {
    fill: #5144A6;
}

.wave-purple-top svg path {
    fill: #5839a6;
}

.wave-light-bottom svg path {
    fill: #FFFFFF;
}

/* Ajuste responsivo das ondas */
@media (max-width: 768px) {
    .wave-divider svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .wave-divider svg {
        height: 30px;
    }
}

.pain-cta {
    text-align: center;
    margin-top: 40px;
}

.pain-highlight {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px auto;
    border: 1px solid #F2BE22;
    max-width: 700px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.pain-highlight p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* ========== CARDS (EBOOKS) ========== */
.card {
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon i {
    font-size: 48px;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.price-tag {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: var(--purple);
}

.price-tag span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.card-blue { border-top: 4px solid var(--blue); }
.card-green { border-top: 4px solid var(--green); }
.card-orange { border-top: 4px solid var(--orange); }
.card-pink { border-top: 4px solid var(--pink); }

/* ========== ABOUT SECTION ========== */

.about {
    background: var(--purple);
    padding: 120px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about .section-header h2 {
    color: #FFFFFF;
}

.about .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.about-highlight {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--yellow);
    backdrop-filter: blur(4px);

    padding: 18px 24px 18px 28px;
    border-radius: 12px;
    margin: 28px 0;
}

.about-highlight p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-highlight i {
    color: var(--yellow);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--yellow);
    display: block;
    letter-spacing: 0.5px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.stat-label i {
    margin-right: 4px;
    color: var(--yellow);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-gallery img {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-gallery img:hover {
    border-color: var(--yellow);
}

.about .btn-outline {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.about .btn-outline:hover {
    background: var(--yellow);
    color: var(--purple);
}

/* ========== COURSES SECTION ========== */
.courses-highlight {
    text-align: center;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.courses-highlight p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.courses-highlight i {
    margin-right: 8px;
    color: var(--yellow);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.plan-card.featured {
    border: 2px solid var(--yellow);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -2px;
    right: -11px;
    background: var(--yellow);
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

.plan-header {
    background: var(--purple);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.plan-header h3 {
    font-family: 'Fredoka', sans-serif;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plan-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.plan-body {
    padding: 25px;
}

.plan-subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.plan-body ul {
    margin-bottom: 20px;
}

.plan-body ul li {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    font-weight: 400;
}

.plan-body ul li i {
    color: var(--green);
    margin-right: 10px;
}

.plan-tag {
    background: var(--bg-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.plan-tag i {
    margin-right: 6px;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: #FFFFFF;
    padding: 80px 0 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-header {
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.category-header .emoji i {
    font-size: 40px;
    margin-bottom: 10px;
}

.category-header h3 {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-category ul {
    padding: 24px;
}

.service-category ul li {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    font-weight: 400;
}

.service-category ul li i {
    color: var(--green);
    margin-right: 10px;
    width: 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--yellow);
    font-size: 16px;
    margin-right: 2px;
}

.testimonial p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.testimonial .author {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: var(--purple);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-family: 'Fredoka', sans-serif;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CTA COMUNIDADE (principal) ===== */
.cta-main {
    margin-top: 25px;
    text-align: center;
}

/* Texto pequeno abaixo do botão principal */
.cta-small-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Texto explicando a comunidade */
.community-highlight-text {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.6;
}

/* ===== CTA SECUNDÁRIA (consultoria) ===== */
.cta-secondary {
    margin-top: 30px;
    text-align: center;
}

/* Texto acima do botão secundário */
.secondary-text {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

/* ========== EBOOKS PREMIUM ========== */
.ebooks-premium {
    position: relative;
    width: 100%;
    background-color: #5839a6;
    padding: 80px 0 100px;
    overflow: hidden;
    margin: 0;
}

/* Remove as ondas internas do ebooks-premium pois agora usamos as externas */
.ebooks-premium::after {
    content: none;
}

.wave-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: auto;
}

.section-header-light {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offer-tag-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #F2BE22;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: 'Fredoka', sans-serif;
    backdrop-filter: blur(4px);
}

.section-header-light h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-header-light p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Swiper para Ebooks */
.ebooks-swiper {
    width: 100%;
    padding: 20px 10px 50px 10px;
    overflow: hidden;
    position: relative;
}

.ebooks-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.ebooks-swiper .swiper-button-prev,
.ebooks-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);

    color: #F2BE22;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.ebooks-swiper .swiper-button-prev:hover,
.ebooks-swiper .swiper-button-next:hover {
    background: white;
    transform: scale(1.08);
}

.ebooks-swiper .swiper-button-prev::after,
.ebooks-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.ebook-card {
    width: 100%;
    max-width: 280px;
    background-color: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
}

.ebook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.3);
}

.card-image-top {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ebook-card:hover .card-image-top img {
    transform: scale(1.05);
}

.badge-round {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background-color: #F2BE22;
    color: #5839a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

.card-content {
    padding: 20px 20px 0 20px;
    border-radius: 0 0 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.card-blue .card-content { background-color: #2EA7FF; }
.card-green .card-content { background-color: #6CD34D; }
.card-orange .card-content { background-color: #FF8A3D; }
.card-pink .card-content { background-color: #C05C80; }
.card-yellow .card-content { background-color: #d4e060; }

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-circle i {
    font-size: 28px;
    color: white;
}

.card-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 12px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.old-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.new-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.btn-buy {
    display: inline-block;
    background: white;
    color: #5839a6;
    padding: 10px 16px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.btn-buy i {
    margin-right: 6px;
}

.btn-buy:hover {
    background: #5839a6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.price-wrapper {
    margin-top: auto;
    width: 100%;
}

.ebooks-bonus-light {
    text-align: center;
    margin-top: 30px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

.ebooks-bonus-light p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 15px;
}

.ebooks-bonus-light i {
    margin-right: 8px;
    color: #F2BE22;
    font-size: 18px;
}

/* ========== ANIMAÇÕES E MICRO-INTERAÇÕES ========== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

.hover-zoom {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pulse-badge {
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(242, 190, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(242, 190, 34, 0);
    }
}

.pulse-animation {
    animation: pulseCta 2s infinite;
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes pulseCta {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(242, 190, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(242, 190, 34, 0);
    }
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(242, 190, 34, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(242, 190, 34, 0);
    }
}

.pulse-hover:hover {
    animation: btnPulse 1s infinite;
}

.scale-animation {
    transition: transform 0.3s ease;
}

.scale-animation:hover {
    transform: scale(1.02);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    color: var(--yellow);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

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

/* AOS custom overrides */
[data-aos] {
    pointer-events: auto !important;
    will-change: transform, opacity;
}

/* Garante que as animações do AOS funcionem corretamente */
.aos-animate {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ============================================
   RESPONSIVIDADE DO HERO
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid-2col {
        gap: 40px;
        padding: 80px 0;
    }
    
    .hero-text-col h1 {
        font-size: 38px;
    }
    
    .hero-instagram-card {
        max-width: 340px;
    }
    
    .testimonials-print-title {
        font-size: 34px;
    }
    
    .slide-bg-1 {
        background-position: 65% center;
    }
}

@media (max-width: 768px) {
    .hero-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-text-col h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-instagram-card {
        margin: 0 auto;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .profile-header-row {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats-row {
        justify-content: center;
    }
    
    .hero-video-col {
        justify-content: center;
    }
    
    .video-overlay-card {
        max-width: 100%;
    }
    
    .play-btn-overlay-large {
        width: 60px;
        height: 60px;
    }
    
    .play-btn-overlay-large i {
        font-size: 24px;
    }
    
    .testimonials-print-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .testimonials-print-grid {
        gap: 20px;
    }
    
    .print-depo-card {
        min-width: 240px;
    }
    
    .testimonials-print-btn .btn-primary {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .slide-background {
        background-size: cover;
        background-position: center;
    }
    
    .slide-bg-1 {
        background-position: 60% center;
        background-size: auto 100%;
    }
    
    .slide-background::after {
        background: linear-gradient(135deg, rgba(81, 68, 166, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
}

@media (max-width: 480px) {
    .hero-text-col h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-white {
        width: 100%;
        text-align: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .profile-stats-row {
        gap: 15px;
    }
    
    .profile-stats-row .stat-item strong {
        font-size: 14px;
    }
    
    .profile-stats-row .stat-item span {
        font-size: 10px;
    }
    
    .testimonials-print-title {
        font-size: 24px;
    }
    
    .testimonials-print-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .print-depo-card {
        max-width: 280px;
        width: 100%;
    }
    
    .slide-bg-1 {
        background-position: 55% center;
        background-size: auto 120%;
    }
}

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
    
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Fundo gradiente roxo/lilás para fallback */
.slide-bg-video-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.slide-bg-video-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.2) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

/* ============================================
   HERO NOVO - BANNERS RESPONSIVOS
   ============================================ */

.hero.hero-banners {
    width: 100%;
    min-height: auto;
    display: block;
    align-items: initial;
    padding: 0;
    margin: 0;
    background: #ffffff;
    overflow: hidden;
}

.hero-banners .banner-swiper {
    width: 100%;
    height: auto;
}

.hero-banners .swiper-wrapper,
.hero-banners .swiper-slide {
    width: 100%;
    height: auto;
    min-height: auto;
}

.hero-banner-link {
    display: block;
    width: 100%;
    line-height: 0;
    cursor: pointer;
}

.hero-banner-picture,
.hero-banner-img {
    display: block;
    width: 100%;
}

.hero-banner-img {
    height: auto;
    object-fit: cover;
}

.hero-banners .swiper-button-prev,
.hero-banners .swiper-button-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--purple);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-banners .swiper-button-prev:hover,
.hero-banners .swiper-button-next:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.hero-banners .swiper-button-prev::after,
.hero-banners .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-banners .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.7;
}

.hero-banners .swiper-pagination-bullet-active {
    background: var(--purple);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero.hero-banners {
        padding: 0;
    }

    .hero-banners .swiper-button-prev,
    .hero-banners .swiper-button-next {
        display: none !important;
    }
}

.hero-banners .banner-swiper {
    position: relative;
}

.hero-banners .swiper-button-prev,
.hero-banners .swiper-button-next {
    z-index: 20;
    pointer-events: auto;
}

.hero-banners .swiper-pagination {
    z-index: 20;
    pointer-events: auto;
}

.hero-banner-link {
    position: relative;
    z-index: 1;
}

.hero-banners .swiper-button-prev.swiper-button-disabled,
.hero-banners .swiper-button-next.swiper-button-disabled {
    opacity: 0.45;
    pointer-events: auto;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px;
}

.footer-bottom-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.footer-bottom-content p {
    margin: 0;
    text-align: center;
}

.footer-extra-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-extra-links a {
    color: #F2BE22;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-extra-links a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cronos-footer-link {
    font-weight: 600;
}

.footer-extra-links span {
    color: rgba(255,255,255,0.4);
}

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

@media (max-width: 768px) {

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-extra-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-extra-links span {
        display: none;
    }
}

/* Cards da seção de dúvidas */
.pain-card:nth-child(1) { transition-delay: 0s; }
.pain-card:nth-child(2) { transition-delay: 0.05s; }
.pain-card:nth-child(3) { transition-delay: 0.1s; }
.pain-card:nth-child(4) { transition-delay: 0.15s; }

/* Cards da seção de serviços */
.service-category:nth-child(1) { transition-delay: 0s; }
.service-category:nth-child(2) { transition-delay: 0.08s; }
.service-category:nth-child(3) { transition-delay: 0.16s; }