/* ========================================
   VARIÁVEIS - IU Education Brand Colors
   ======================================== */
:root {
    --primary: #3E4A7A;
    --primary-dark: #2D3558;
    --primary-light: #5B6BA8;
    --accent: #A62F3C;
    --accent-hover: #8B2732;
    --accent-light: #C14551;
    --white: #FFFFFF;
    --gray-50: #F7F8FA;
    --gray-100: #EEF0F4;
    --gray-200: #D8DCE6;
    --gray-700: #4A5568;
    --gray-900: #1A202C;
    --success: #22C55E;
    --success-light: #DCFCE7;
    --whatsapp: #25D366;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.20);
}

/* ========================================
   RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20bd5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-link {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
    text-decoration: none;
}

.header-link:hover {
    opacity: 0.8;
}

.btn-whatsapp-header {
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-whatsapp-header:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(91, 107, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(166, 47, 60, 0.1) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 48px 0;
    animation: fadeInUp 1.2s ease;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    background: var(--success);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
    animation: fadeInUp 1.4s ease;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.6s ease;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(166, 47, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(166, 47, 60, 0.4);
}

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

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(166, 47, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(166, 47, 60, 0.3), 0 0 0 8px rgba(166, 47, 60, 0.1);
    }
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title-white {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
}

.section-description-white {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CARDS
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-animated {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.card-animated:nth-child(1) { animation-delay: 0.1s; }
.card-animated:nth-child(2) { animation-delay: 0.2s; }
.card-animated:nth-child(3) { animation-delay: 0.3s; }
.card-animated:nth-child(4) { animation-delay: 0.4s; }
.card-animated:nth-child(5) { animation-delay: 0.5s; }
.card-animated:nth-child(6) { animation-delay: 0.6s; }

.card-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(62, 74, 122, 0.2);
}

.card-icon {
    font-size: 3rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.card-highlight {
    background: var(--success-light);
    color: var(--success);
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-left: 4px solid var(--success);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   CTA BOXES
   ======================================== */
.section-cta {
    margin-top: 64px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-box-white {
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.cta-box-white h3 {
    color: var(--primary);
}

.cta-box-white p {
    color: var(--gray-700);
}

/* ========================================
   DEPOIMENTOS COM SWIPER
   ======================================== */
.section-depoimentos {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials-swiper {
    padding: 40px 20px 60px;
    position: relative;
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card-new:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.testimonial-avatar-new {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 24px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-badge-new {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonial-name-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.testimonial-text-new {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

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

.info-box-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent);
    padding: 28px;
    border-radius: 16px;
    margin: 48px auto 0;
    max-width: 900px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-box-new p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================

/* ========================================
   VÍDEO DEPOIMENTO (ESTILOS ADICIONADOS)
   ======================================== */
.video-depoimento-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin: 48px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.video-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(166, 47, 60, 0.3);
}

.video-label svg {
    flex-shrink: 0;
}

.video-container-premium {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.video-caption-premium {
    margin-top: 20px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-style: italic;
}

/* ========================================
   LOCAL - MELHORIAS ADICIONADAS
   ======================================== */
.highlight-box-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 48px 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.highlight-box-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.highlight-box-premium > * {
    position: relative;
    z-index: 1;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

/* ========================================
   INVESTIMENTO - MELHORIAS ADICIONADAS
   ======================================== */
.pricing-intro-premium {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pricing-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pricing-guarantee-box {
    background: var(--success-light);
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid var(--success);
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pricing-guarantee-box svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-guarantee-box p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-900);
}

   FOOTER
   ======================================== */
footer,
footer.footer,
.footer {
    background: #1A202C !important;
    background-color: #1A202C !important;
    color: #D8DCE6 !important;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: #FFFFFF !important;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #D8DCE6 !important;
}

.footer-col h4 {
    color: #FFFFFF !important;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #D8DCE6 !important;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #D8DCE6 !important;
    margin-bottom: 8px;
}

.footer-disclaimer {
    opacity: 0.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   LOCAL (ITAIM PAULISTA)
   ======================================== */
.section-local {
    background: var(--white);
}

.local-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
    text-align: center;
}

.highlight-box-premium {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.highlight-box-premium p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.benefits-grid-local {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.benefit-local {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--success);
    transition: all 0.3s;
}

.benefit-local:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-local svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-local span {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.text-highlight-end {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 40px;
    color: var(--primary);
}

/* ========================================
   DIFERENCIAIS EXCLUSIVOS
   ======================================== */
.section-exclusivos {
    background: var(--gray-50);
}

.exclusivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.exclusivo-card-premium {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.exclusivo-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.exclusivo-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--primary-light);
}

.exclusivo-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.exclusivo-icon-large {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.exclusivo-title-premium {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.exclusivo-subtitle-premium {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-weight: 600;
}

.exclusivo-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.exclusivo-badge-premium {
    background: var(--success-light);
    color: var(--success);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--success);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* ========================================
   MÓDULOS
   ======================================== */
.section-modulos {
    background: var(--white);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.modulo-card-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 36px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modulo-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.modulo-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.modulo-card-premium:hover::before {
    opacity: 0.05;
}

.modulo-card-premium > * {
    position: relative;
    z-index: 1;
}

.modulo-icon-premium {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.modulo-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.modulo-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.modulo-impact-premium {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
}

/* ========================================
   INVESTIMENTO
   ======================================== */
.section-investimento {
    background: var(--gray-50);
}

.pricing-premium {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px;
    border-radius: 24px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-intro-premium {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-intro-premium p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
}

.pricing-table-premium {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
}

.pricing-row-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-row-premium:last-child {
    border-bottom: none;
}

.pricing-row-premium span {
    color: var(--gray-700);
}

.pricing-row-premium strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.pricing-highlight-premium {
    background: rgba(62, 74, 122, 0.05);
    padding: 20px;
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
}

.pricing-highlight-premium strong {
    color: var(--accent);
    font-size: 1.5rem;
}

.pricing-info-premium {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 16px;
    margin-top: 32px;
}

.pricing-info-premium h4 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-info-premium p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.pricing-guarantee {
    color: var(--success);
    font-weight: 600;
}

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

/* ========================================
   FAQ PREMIUM
   ======================================== */
.section-faq {
    background: var(--white);
}

.faq-grid-premium {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-premium:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item-premium.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question-premium {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.faq-question-premium:hover {
    background: var(--gray-50);
}

.faq-icon-premium {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item-premium.active .faq-icon-premium {
    transform: rotate(180deg);
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 500px;
}

.faq-answer-premium p {
    padding: 0 24px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.faq-benefit-premium {
    margin: 0 24px 24px;
    background: var(--success-light);
    color: var(--success);
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border-left: 4px solid var(--success);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .cta-box h3 {
        font-size: 1.875rem;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Exclusivos */
    .exclusivos-grid {
        grid-template-columns: 1fr;
    }

    .exclusivo-card-premium {
        padding: 40px 28px;
    }

    .exclusivo-number {
        font-size: 3.5rem;
        top: 24px;
        right: 24px;
    }

    .exclusivo-icon-large {
        font-size: 4rem;
    }

    .exclusivo-title-premium {
        font-size: 1.875rem;
    }

    /* Módulos */
    .modulos-grid {
        grid-template-columns: 1fr;
    }

    .modulo-card-premium {
        padding: 32px;
    }

    /* Pricing */
    .pricing-premium {
        padding: 40px 28px;
    }

    .pricing-table-premium {
        padding: 28px;
    }

    .pricing-row-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 1rem;
    }

    .pricing-row-premium:hover {
        margin: 0 -28px;
        padding-left: 44px;
        padding-right: 28px;
    }

    .pricing-highlight-premium {
        margin: 0 -28px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .pricing-info-premium {
        padding: 28px;
    }

    /* Local */
    .highlight-box-premium {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .highlight-icon {
        font-size: 3.5rem;
    }

    .benefit-local {
        padding: 20px;
    }

    /* Vídeo Depoimento */
    .video-depoimento-box {
        padding: 28px 20px;
    }

    /* FAQ */
    .faq-question-premium {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer-premium p {
        font-size: 1rem;
    }
}

/* ========================================
   CORREÇÃO CRÍTICA FOOTER - GARANTIA MÁXIMA
   ======================================== */
body footer,
html footer,
footer[class*="footer"] {
    background: #1A202C !important;
    background-color: #1A202C !important;
}

/* Reforço de especificidade máxima */
body > footer.footer,
html > body > footer.footer {
    background: #1A202C !important;
    background-color: #1A202C !important;
}

/* ========================================
   FOOTER - GARANTIA DE CONTRASTE
   ======================================== */
/* Força TODOS os elementos do footer a terem cor clara */
.footer *,
footer *,
.footer-content *,
.footer-col *,
.footer-list *,
.footer-bottom * {
    color: inherit;
}

.footer,
.footer-content,
.footer-col,
.footer-list,
.footer-bottom {
    color: #D8DCE6 !important;
}

/* Garante que títulos e logos sejam brancos */
.footer h3,
.footer h4,
.footer-logo,
.footer-col h4 {
    color: #FFFFFF !important;
}

/* Garante que textos sejam cinza claro */
.footer p,
.footer li,
.footer span,
.footer-desc,
.footer-list li,
.footer-bottom p {
    color: #D8DCE6 !important;
}

/* Garante que links sejam visíveis */
.footer a {
    color: #D8DCE6 !important;
    text-decoration: none;
}

.footer a:hover {
    color: #FFFFFF !important;
}

/* ========================================
   LOGO - TOTALMENTE BRANCA (SOLUÇÃO SIMPLES)
   Substitua a seção da logo por este código
   ======================================== */

/* Container para a logo */
.logo-container {
    position: relative;
    display: inline-block;
}

/* Logo no Header */
.logo {
    display: flex;
    align-items: center;
}

/* Logo totalmente BRANCA */
.logo-white {
    height: 70px;
    width: auto;
    display: block;
    /* Filtro forte para forçar branco total */
    filter: brightness(0) invert(1) brightness(2);
    transition: all 0.3s ease;
}

/* Esconde a segunda imagem vermelha - não é mais necessária */
.logo-red {
    display: none !important;
}

/* Hover no header */
.logo-container:hover .logo-white {
    transform: scale(1.05);
    filter: brightness(0) invert(1) brightness(2.3) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

/* Logo no Footer */
.footer-logo-wrapper {
    margin-bottom: 16px;
}

/* Logo branca no footer */
.footer-logo-wrapper .logo-white {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) brightness(2);
    transition: all 0.3s ease;
}

/* Esconde a segunda imagem do footer */
.footer-logo-wrapper .logo-red {
    display: none !important;
}

/* Hover no footer */
.footer-logo-wrapper .logo-container:hover .logo-white {
    transform: scale(1.05);
    filter: brightness(0) invert(1) brightness(2.3) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-white {
        height: 55px;
    }

    .footer-logo-wrapper .logo-white {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .logo-white {
        height: 50px;
    }

    .footer-logo-wrapper .logo-white {
        height: 60px;
    }
}

/* ========================================
   MENU DE NAVEGAÇÃO PREMIUM
   ADICIONE ESTE CÓDIGO NO FINAL DO SEU style.css
   ======================================== */

/* Menu de Navegação */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
}

/* Efeito hover no link */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::before {
    width: 70%;
}

/* Link ativo */
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Botão WhatsApp simplificado */
.btn-whatsapp-header {
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-whatsapp-header:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Botão Menu Mobile (escondido em desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Botão fechar menu (escondido em desktop) */
.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-900);
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

/* ========================================
   RESPONSIVE - MENU MOBILE
   ======================================== */
@media (max-width: 968px) {
    /* Mostra botão de menu mobile */
    .nav-toggle {
        display: flex;
    }

    /* Esconde texto do botão WhatsApp em tablets */
    .btn-whatsapp-header .btn-text {
        display: none;
    }

    .btn-whatsapp-header {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    /* Menu mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    /* Mostra botão fechar */
    .nav-close {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link {
        color: var(--gray-900);
        padding: 16px 20px;
        border-radius: 0;
        font-size: 16px;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: var(--gray-100);
        padding-left: 28px;
    }

    .nav-link.active {
        background: var(--primary);
        color: var(--white);
    }

    /* Animação do botão menu quando ativo */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

    /* Overlay escuro quando menu aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

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

/* Animação do overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   SCROLL SUAVE - ANIMAÇÃO
   ======================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Compensa altura do header fixo */
}

/* CORREÇÃO DEFINITIVA - PADDING FOOTER */
body footer.footer,
html body footer.footer,
footer.footer.footer {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
}

.footer > .container {
    padding-top: 0 !important;
}

.footer .footer-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* ========================================
   EXIT INTENT POPUP - IU EDUCATION
   ======================================== */

/* Overlay do Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container do Popup */
.exit-popup-container {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}

.exit-popup-overlay.active .exit-popup-container {
    transform: scale(1) translateY(0);
}

/* Botão Fechar */
.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray-700);
}

.exit-popup-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

/* Badge Premium */
.exit-popup-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 0 auto 24px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(166, 47, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(166, 47, 60, 0.3), 0 0 0 8px rgba(166, 47, 60, 0.1);
    }
}

/* Título */
.exit-popup-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Subtítulo */
.exit-popup-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 32px;
}

.exit-popup-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

/* Contador Regressivo */
.exit-popup-timer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 32px;
}

.timer-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    font-size: 48px;
    font-weight: 900;
    color: white;
    font-family: 'Inter', monospace;
    letter-spacing: 2px;
}

/* Oferta Destaque */
.exit-popup-offer {
    background: var(--gray-50);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.offer-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 16px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.price-old {
    font-size: 24px;
    color: var(--gray-700);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-arrow {
    font-size: 24px;
    color: var(--accent);
    font-weight: 900;
}

.price-new {
    font-size: 36px;
    color: var(--accent);
    font-weight: 900;
}

.offer-discount {
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
}

/* Benefícios */
.exit-popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.benefit-item-popup {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.benefit-item-popup svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.benefit-item-popup strong {
    color: var(--primary);
    font-weight: 700;
}

/* CTA Principal */
.exit-popup-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20bd5a 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    margin-bottom: 16px;
}

.exit-popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Botão Secundário */
.exit-popup-secondary {
    width: 100%;
    background: transparent;
    color: var(--gray-700);
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.exit-popup-secondary:hover {
    background: var(--gray-100);
}

/* Urgência Final */
.exit-popup-urgency {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    padding: 16px;
    background: rgba(166, 47, 60, 0.05);
    border-radius: 8px;
}

/* Responsividade do Popup */
@media (max-width: 768px) {
    .exit-popup-container {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .exit-popup-title {
        font-size: 24px;
    }

    .exit-popup-subtitle {
        font-size: 16px;
    }

    .timer-display {
        font-size: 36px;
    }

    .price-old {
        font-size: 20px;
    }

    .price-new {
        font-size: 28px;
    }

    .exit-popup-cta {
        font-size: 14px;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .exit-popup-overlay {
        padding: 12px;
    }

    .exit-popup-container {
        padding: 24px 20px;
        max-height: 85vh;
    }

    .exit-popup-title {
        font-size: 20px;
    }

    .timer-display {
        font-size: 28px;
    }

    .offer-price {
        flex-direction: column;
        gap: 4px;
    }

    .price-arrow {
        transform: rotate(90deg);
    }
}

/* Scrollbar do Popup */
.exit-popup-container::-webkit-scrollbar {
    width: 6px;
}

.exit-popup-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.exit-popup-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.exit-popup-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}