/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3E125B;
    --primary-dark: #2D0D42;
    --primary-light: #5A1A7A;
    --primary-lighter: #7A2A9A;
    --secondary-color: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --text-dark: #212529;
    --text-medium: #2d3439;
    --text-light: #495057;
    --success-color: #28A745;
    --border-light: #DEE2E6;
    --border-medium: #CED4DA;
    --gradient-primary: linear-gradient(135deg, #3E125B 0%, #5A1A7A 100%);
    --gradient-glow: linear-gradient(135deg, rgba(62, 18, 91, 0.12) 0%, rgba(90, 26, 122, 0.12) 100%);
    --shadow-sm: 0 2px 8px rgba(62, 18, 91, 0.12);
    --shadow-md: 0 4px 20px rgba(62, 18, 91, 0.18);
    --shadow-lg: 0 8px 32px rgba(62, 18, 91, 0.25);
    --shadow-xl: 0 12px 48px rgba(62, 18, 91, 0.3);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(62, 18, 91, 0.2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Skip Link para Acessibilidade */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Barra de cookies / LGPD */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--secondary-color);
    padding: 1rem 24px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.cookie-bar--visible {
    transform: translateY(0);
}

.cookie-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-bar-text {
    font-size: 14px;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.cookie-bar-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.cookie-bar-link:hover {
    color: var(--secondary-color);
}

.cookie-bar-btn {
    padding: 0.5rem 1.25rem;
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
}

.cookie-bar-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .cookie-bar-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

body:has(.notification-bar.active) .header {
    top: 40px;
}

/* Fallback para navegadores sem suporte a :has() */
.notification-bar.active + .header {
    top: 40px;
}

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

/* Navigation */
.main-nav {
    position: relative;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.menu-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.menu-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.menu-link:hover {
    color: var(--primary-color);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-cta {
    margin-left: 0.75rem;
}

/* Desktop - Menu sempre visível */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .main-nav {
        display: block;
    }

    .menu-list {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        right: auto !important;
        overflow: visible !important;
        gap: 1.25rem !important;
    }

    .menu-list li {
        width: auto !important;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu-link {
        padding: 0.5rem 0 !important;
        display: block !important;
        white-space: nowrap;
    }

    .menu-link::after {
        display: block !important;
    }

    .menu-cta {
        margin: 0 0 0 1rem !important;
        width: auto !important;
    }

    .menu-cta .btn-header {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
        white-space: nowrap;
    }

    .menu-overlay {
        display: none !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .menu-list {
        gap: 1rem !important;
    }

    .menu-link {
        font-size: 13px;
    }
    
    .menu-cta {
        margin-left: 1rem !important;
    }
    
    .menu-cta .btn-header {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }
}

@media (min-width: 1025px) {
    .menu-list {
        gap: 1.5rem !important;
    }

    .menu-link {
        font-size: 14px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-proof {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.btn-header {
    padding: 12px 24px;
    font-size: 15px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    will-change: transform;
    touch-action: manipulation;
}

.btn:active {
    transform: scale(0.98);
}

.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.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(62, 18, 91, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(62, 18, 91, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-hero {
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.btn-hero-pulse {
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.btn-text {
    display: inline-block;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 24px;
    line-height: 1;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(4px);
}

/* Barra de Notificação Superior */
.notification-bar {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 0.75rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.notification-bar.active {
    display: block;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.notification-icon {
    font-size: 18px;
    line-height: 1;
}

.notification-text {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .notification-text {
        font-size: 12px;
    }
    
    .notification-icon {
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 120px 20px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body:has(.notification-bar.active) .hero {
    padding-top: 180px;
}

/* Fallback */
.notification-bar.active ~ * .hero {
    padding-top: 180px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    opacity: 0.95;
}

.badge-urgency {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(38px, 7vw, 64px);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-availability {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.availability-badge::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 0.6rem;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: pulse-availability 2s ease-in-out infinite;
}

@keyframes pulse-availability {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* WhatsApp Widget Fixo */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-widget-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-widget-link:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget-link {
        padding: 0.875rem 1.25rem;
        font-size: 14px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-widget-link {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Problem Section */
.problem {
    padding: 48px 20px;
    background: var(--gray-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.problem-card {
    background: var(--secondary-color);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

.problem-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: 52px 20px;
    background: var(--secondary-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.approach-card {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

.approach-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    padding: 48px 20px;
    background: var(--gray-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1025px) {
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solution-card {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.solution-card-featured {
    background: var(--gradient-glow);
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 4px 20px rgba(62, 18, 91, 0.2);
}

.solution-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.solution-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

.solutions-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-medium);
}

.solutions-note {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.solutions-note strong {
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 64px 20px;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-medium);
}

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

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 48px 20px;
    background: var(--secondary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--secondary-color);
    border: 2px solid var(--border-medium);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: var(--gradient-glow);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(62, 18, 91, 0.2);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-card-custom {
    border-color: var(--primary-color);
    border-width: 3px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    transform: scale(1.03);
    grid-column: 1 / -1;
    box-shadow: 0 8px 32px rgba(62, 18, 91, 0.35);
}

.pricing-card-custom:hover {
    transform: scale(1.07) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-custom .pricing-name {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.pricing-card-custom .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card-custom .pricing-section-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card-custom .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pricing-card-custom .pricing-info {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pricing-card-custom .pricing-features li strong {
    color: var(--secondary-color);
    font-weight: 700;
    opacity: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pricing-card-custom .pricing-features li:before {
    color: var(--secondary-color);
}

.pricing-card-custom .pricing-expand-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
}

.pricing-card-custom .pricing-expand-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card-custom .price-installment {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.custom-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.price-custom {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.pricing-name {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pricing-subtitle {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.price-old {
    display: block;
    font-size: 14px;
    color: var(--gray-dark);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-new {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.price-installment {
    display: block;
    font-size: 13px;
    color: var(--gray-dark);
    margin-top: 0.5rem;
    font-weight: 500;
}

.pricing-section {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.pricing-section:last-of-type {
    margin-bottom: 2rem;
}

.pricing-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

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

.pricing-features li {
    padding: 0.65rem 0;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-exclusions {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-exclusions li {
    padding: 0.65rem 0;
    color: var(--gray-dark);
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-exclusions li:before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-dark);
}

.pricing-exclusions li:last-child {
    border-bottom: none;
}

.pricing-info {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.pricing-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.pricing-info a:hover {
    border-bottom-color: var(--primary-color);
}

.pricing-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 0.75rem;
}

.pricing-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.expanded .pricing-expandable {
    max-height: 1200px;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-expand-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-medium);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pricing-expand-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gray-light);
}

.pricing-card.expanded .pricing-expand-btn .expand-icon {
    transform: rotate(180deg);
}

.expand-icon {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
}

/* Guarantees Section */
.guarantees {
    padding: 48px 20px;
    background: var(--secondary-color);
    position: relative;
}

.guarantees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(62, 18, 91, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.guarantees-content {
    display: block;
    margin-bottom: 2rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

/* Desktop - Cards lado a lado */
@media (min-width: 769px) {
    .guarantees .guarantees-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        display: grid !important;
    }

    .guarantees .guarantee-card {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
}

.guarantee-card {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guarantee-card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--gray-light) 0%, rgba(62, 18, 91, 0.03) 100%);
    box-shadow: var(--shadow-card-hover);
}

@media (max-width: 768px) {
    .guarantee-badge-image {
        max-width: 100px;
    }
    
    .guarantee-card {
        padding: 1.5rem 1.25rem;
    }
    
    .guarantee-card h3 {
        font-size: 18px;
    }
    
    .guarantee-card p {
        font-size: 14px;
    }
}

.guarantee-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.guarantee-icon-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.guarantee-badge-inline {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.guarantee-badge-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    width: 100%;
    text-align: left;
}

.guarantee-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    width: 100%;
    text-align: left;
}

.guarantee-card p:last-child {
    margin-bottom: 0;
}

.guarantee-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}


.guarantees-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.guarantees-note p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
    font-weight: 500;
}

/* Support Section */
.support {
    padding: 52px 20px;
    background: var(--gray-light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: var(--secondary-color);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.support-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.support-duration {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}

.support-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    padding: 48px 20px;
    background: var(--secondary-color);
}

.approach-integrated {
    margin-bottom: 1.5rem;
}

.steps-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.steps-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.step-card {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-card);
}

.step-card:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(62, 18, 91, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(62, 18, 91, 0.4);
}

.step-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

/* Transformation Section */
.transformation {
    padding: 64px 20px;
    background: var(--secondary-color);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.transformation-card {
    background: var(--gray-light);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-before {
    border-color: #dc3545;
}

.transformation-after {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.02) 100%);
}

.transformation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.transformation-card h3 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.transformation-before h3 {
    color: #dc3545;
}

.transformation-after h3 {
    color: var(--success-color);
}

.transformation-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.transformation-list li {
    padding: 0.75rem 0;
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid var(--gray-medium);
    position: relative;
    padding-left: 0;
}

.transformation-list li:last-child {
    border-bottom: none;
}

.transformation-before .transformation-list li {
    color: var(--text-light);
}

.transformation-after .transformation-list li {
    color: var(--text-dark);
}

.transformation-after .transformation-list li strong {
    color: var(--success-color);
    font-weight: 700;
}

.transformation-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-medium);
}

.transformation-note {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.transformation-note strong {
    color: var(--primary-color);
}

.urgency-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.urgency-content h3 {
    font-size: 28px;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* FAQ */
.faq {
    padding: 48px 20px;
    background: var(--gray-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-card);
}

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

.faq-question {
    width: 100%;
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(62, 18, 91, 0.04);
}

.faq-question h3 {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 1.75rem 1.75rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* FAQ: bloco "Ver mais dúvidas" */
.faq-more-wrapper {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.faq-more-toggle {
    width: 100%;
    padding: 1rem 1.75rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.faq-more-toggle:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.faq-list-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-more-wrapper.is-open .faq-list-more {
    max-height: 3000px;
}

.faq-answer p + p {
    margin-top: 1rem;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Social Proof Section */
/* Prova Social Visual */
.social-proof-visual {
    padding: 48px 20px;
    background: var(--gray-light);
}

/* Depoimentos - Carrossel fluido (1 central + 2 ao fundo, sem cortar os laterais) */
.depoimentos-carousel {
    --carousel-slide-width: 300px;
    --carousel-gap: 24px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 72px;
    overflow: visible;
}

.carousel-viewport {
    overflow: visible;
    margin: 0 -20px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: var(--carousel-gap);
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide {
    flex: 0 0 var(--carousel-slide-width);
    min-width: 0;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
                opacity 0.5s ease,
                box-shadow 0.5s ease,
                filter 0.5s ease;
    opacity: 0.65;
    transform: scale(0.92);
    z-index: 0;
    filter: brightness(0.98);
}

.carousel-slide.carousel-slide-center {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    filter: brightness(1);
}

.depoimentos-carousel .testimonial-card {
    background: white;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--border-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.carousel-slide:not(.carousel-slide-center) .testimonial-card {
    pointer-events: none;
}

.carousel-slide-center .testimonial-card {
    box-shadow: 0 20px 50px rgba(62, 18, 91, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(62, 18, 91, 0.35);
}

.depoimentos-carousel .whatsapp-print-wrapper {
    width: 100%;
    max-height: 400px;
    min-height: 180px;
    flex: 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimentos-carousel .whatsapp-print {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
    border-radius: 14px;
}

.depoimentos-carousel .testimonial-meta {
    padding: 0.65rem 1.25rem 0.85rem;
    text-align: center;
    border-top: 1px solid var(--gray-medium);
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.7) 0%, #fff 100%);
}

.depoimentos-carousel .testimonial-stars {
    color: #EAB308;
    font-size: 1rem;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.depoimentos-carousel .testimonial-business {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.depoimentos-carousel .testimonial-description {
    font-size: 12px;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 4;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 28px rgba(62, 18, 91, 0.35);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-medium);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.carousel-dot:hover {
    background: var(--text-medium);
    transform: scale(1.15);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Badge Verificado */
.verified-badge-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(62, 18, 91, 0.1) 0%, rgba(62, 18, 91, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.verified-badge svg {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.social-proof {
    padding: 70px 20px;
    background: var(--secondary-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.proof-card {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

.proof-card h3 {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.proof-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.proof-note {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    text-align: center;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof-note p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* CTA Final */
.cta-final {
    padding: 48px 20px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cta-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.cta-urgency {
    margin-top: 1.5rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Comparison Section */
.comparison {
    padding: 48px 20px;
    background: var(--secondary-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.comparison-item {
    background: var(--gray-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-badge-us {
    background: var(--gradient-primary);
    color: var(--secondary-color);
}

.comparison-badge-them {
    background: var(--gray-medium);
    color: var(--text-dark);
}

.comparison-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.comparison-item p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.comparison-note {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.comparison-note p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.comparison-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Experience - Removido duplicado, usando definição principal */

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--secondary-color);
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-schedule {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.footer-social {
    margin-top: 0.75rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    text-decoration: none;
    opacity: 0.85;
    transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    opacity: 1;
}

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

.footer-text {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }

    .pricing-card-custom {
        grid-column: 1 / -1;
    }

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


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

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

    .problem-grid,
    .approach-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
}

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

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

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

}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 36px;
    }

    .header-proof {
        display: none;
    }

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

    .menu-toggle {
        display: flex !important;
    }

    .menu-list {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: var(--secondary-color) !important;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 80px 2rem 2rem !important;
        gap: 0 !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
    }

    .menu-list.active {
        right: 0 !important;
    }

    .menu-overlay.active {
        display: block;
    }

    .menu-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .menu-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 16px;
    }

    .menu-link::after {
        display: none;
    }

    .menu-cta {
        margin: 1.5rem 0 0 0;
        width: 100%;
        border-bottom: none;
    }

    .menu-cta .btn-header {
        width: 100%;
        text-align: center;
    }


    /* Planos em carrossel no mobile */
    .pricing-grid {
        display: flex;
        align-items: stretch;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding-bottom: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none; /* Chrome / Safari */
    }

    .pricing-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        min-height: 0;
        height: auto;
        overflow: visible;
        padding: 1.25rem 1rem 1rem;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    .pricing-card.expanded {
        min-height: 0;
    }

    /* Conteúdo mais compacto no mobile para caber sem scroll */
    .pricing-card .pricing-name {
        font-size: 20px;
        margin-bottom: 0.35rem;
    }
    .pricing-card .pricing-subtitle {
        font-size: 12px;
        margin-bottom: 0.75rem;
    }
    .pricing-card .pricing-price {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    .pricing-card .price-old {
        font-size: 12px;
        margin-bottom: 0.25rem;
    }
    .pricing-card .price-new {
        font-size: 28px;
    }
    .pricing-card .price-installment {
        font-size: 11px;
        margin-top: 0.25rem;
    }
    .pricing-card .pricing-section {
        margin-bottom: 0.75rem;
    }
    .pricing-card .pricing-section:last-of-type {
        margin-bottom: 1rem;
    }
    .pricing-card .pricing-section-title {
        font-size: 11px;
        margin-bottom: 0.4rem;
    }
    .pricing-card .pricing-features li {
        padding: 0.35rem 0;
        font-size: 12px;
        line-height: 1.45;
        padding-left: 1.2rem;
    }
    .pricing-card .pricing-features li:before {
        font-size: 12px;
    }
    .pricing-card .pricing-exclusions li {
        padding: 0.35rem 0;
        font-size: 11px;
        line-height: 1.45;
        padding-left: 1.2rem;
    }
    .pricing-card .pricing-info {
        font-size: 11px;
        line-height: 1.5;
    }
    .pricing-card .pricing-card-footer {
        padding-top: 0.75rem;
    }
    .pricing-card .pricing-cta {
        margin-bottom: 0.5rem;
        padding: 12px 16px;
        font-size: 14px;
    }
    .pricing-card .pricing-expand-btn {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }

    /* Card em foco no mobile (primeiro visível) */
    .pricing-card:first-child {
        box-shadow: 0 8px 24px rgba(62, 18, 91, 0.15);
        border-color: var(--primary-color);
    }

    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-badges {
        gap: 0.75rem;
    }
    
    .hero-badge-item {
        font-size: 12px;
        padding: 0.4rem 0.75rem;
    }
    
    .btn-hero {
        padding: 18px 36px;
        font-size: 18px;
    }
    
    .availability-badge {
        font-size: 12px;
        padding: 0.4rem 0.85rem;
    }

    .features,
    .pricing,
    .support,
    .how-it-works,
    .faq,
    .cta-final,
    .problem,
    .solutions,
    .comparison,
    .social-proof-visual {
        padding: 44px 20px;
    }
    
    .social-proof {
        padding: 60px 20px;
    }

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

    .pricing-card-custom {
        grid-column: span 1;
    }

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

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

    .guarantees-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr !important;
    }


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

    .steps-grid,
    .support-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }

    .btn {
        width: 100%;
        min-height: 44px;
        padding: 14px 24px;
    }
    
    .btn-hero {
        min-height: 52px;
        padding: 16px 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
}

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

    .hero {
        padding: 88px 16px 52px;
    }

    .hero-badge {
        flex-direction: column;
        gap: 6px;
        padding: 12px 20px;
    }

    .features,
    .pricing,
    .guarantees,
    .support,
    .how-it-works,
    .faq,
    .cta-final,
    .problem,
    .solutions,
    .comparison,
    .social-proof-visual {
        padding: 36px 16px;
    }
    
    .comparison-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(min-content, auto);
        gap: 1rem;
    }
    
    .comparison-item {
        overflow: visible;
        min-height: auto;
        padding: 1.25rem 1rem;
    }
    
    .comparison-item h3 {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .comparison-item p {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .comparison-badge {
        padding: 0.4rem 0.75rem;
        font-size: 12px;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .social-proof-visual {
        overflow-x: hidden; /* no mobile evita scroll horizontal */
    }
    
    .depoimentos-carousel {
        max-width: 100%;
        padding: 0 48px;
        --carousel-slide-width: 260px;
        --carousel-gap: 16px;
    }
    
    .carousel-viewport {
        margin: 0 -16px;
    }
    
    .carousel-prev {
        left: 6px;
        width: 42px;
        height: 42px;
    }
    
    .carousel-next {
        right: 6px;
        width: 42px;
        height: 42px;
    }
    
    .depoimentos-carousel .whatsapp-print-wrapper {
        max-height: 340px;
        min-height: 140px;
    }
    
    .depoimentos-carousel .whatsapp-print {
        max-height: 340px;
    }
    
    .depoimentos-carousel .testimonial-meta {
        padding: 0.5rem 1rem 0.7rem;
    }
    
    .depoimentos-carousel .testimonial-description {
        font-size: 11px;
    }
    
    .social-proof {
        padding: 50px 16px;
    }

    .feature-card,
    .pricing-card,
    .step-card,
    .support-card,
    .problem-card,
    .approach-card,
    .solution-card,
    .proof-card {
        padding: 1.5rem 1.25rem;
    }

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

    .section-title {
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Animações suaves */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.faq-item.animate {
    transform: translateY(10px);
}

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

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(62, 18, 91, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(62, 18, 91, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Exit Intent Pop-up */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-popup {
    background: var(--secondary-color);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    animation: exitPopupSlideIn 0.4s ease forwards;
}

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

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

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--gray-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
    line-height: 1;
}

.exit-popup-close:hover {
    background: var(--gray-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.exit-popup-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.exit-popup-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    line-height: 1;
}

.exit-popup-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.exit-popup-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.exit-popup-subtitle strong {
    color: var(--primary-color);
    font-size: 20px;
}

.exit-popup-description {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.exit-popup-form {
    text-align: left;
}

.exit-popup-form-group {
    margin-bottom: 1rem;
}

.exit-popup-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-medium);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    color: var(--text-dark);
}

.exit-popup-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 18, 91, 0.1);
}

.exit-popup-input::placeholder {
    color: var(--gray-dark);
}

.exit-popup-status {
    font-size: 14px;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.exit-popup-status--error {
    color: #c0392b;
    font-weight: 500;
}

.exit-popup-submit {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
}

.exit-popup-alternative {
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 1rem;
    text-align: center;
}

.exit-popup-whatsapp-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.exit-popup-whatsapp-link:hover {
    border-bottom-color: var(--primary-color);
}

.exit-popup-privacy {
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.exit-popup-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.exit-popup-privacy a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .exit-popup {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .exit-popup-content {
        padding: 2rem 1.5rem;
    }
    
    .exit-popup-title {
        font-size: 24px;
    }
    
    .exit-popup-subtitle {
        font-size: 16px;
    }
    
    .exit-popup-icon {
        font-size: 40px;
    }
}

/* Páginas Legais */
.legal-page {
    padding: 140px 20px 80px;
    background: var(--gray-light);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.legal-title {
    font-size: clamp(32px, 5vw, 42px);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: var(--gray-dark);
    font-size: 14px;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    margin-top: 2rem;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 15px;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 15px;
}

.legal-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

.legal-footer p {
    color: var(--text-medium);
    font-size: 14px;
    margin: 0.5rem 0;
}

.legal-footer p strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 16px 60px;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}
