/* Design System & Reset */
:root {
    /* Colors */
    --primary: #4F46E5; /* Indigo */
    --primary-light: #6366F1;
    --primary-dark: #4338CA;
    --secondary: #06B6D4; /* Cyan */
    --accent: #10B981; /* Emerald */
    
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

.section-reveal {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.section-reveal.active {
    opacity: 1;
}

/* Staggered Cards Animation */
.planos.section-reveal .plan-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.planos.section-reveal.active .plan-card {
    opacity: 1;
    transform: translateY(0);
}
.planos.section-reveal.active .plan-card:nth-child(1) { transition-delay: 0.1s; }
.planos.section-reveal.active .plan-card:nth-child(2) { transition-delay: 0.2s; }
.planos.section-reveal.active .plan-card:nth-child(3) { transition-delay: 0.3s; }
.planos.section-reveal.active .plan-card:nth-child(4) { transition-delay: 0.4s; }
.planos.section-reveal.active .plan-card:nth-child(5) { transition-delay: 0.5s; }
.planos.section-reveal.active .plan-card:nth-child(6) { transition-delay: 0.6s; }

/* About Section Animation */
.sobre.section-reveal .about-image-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sobre.section-reveal.active .about-image-wrapper {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.sobre.section-reveal .about-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sobre.section-reveal.active .about-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

/* Trust Items Animation */
.trust-section.section-reveal .trust-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.trust-section.section-reveal.active .trust-item {
    opacity: 1;
    transform: scale(1);
}
.trust-section.section-reveal.active .trust-item:nth-child(1) { transition-delay: 0.1s; }
.trust-section.section-reveal.active .trust-item:nth-child(2) { transition-delay: 0.2s; }
.trust-section.section-reveal.active .trust-item:nth-child(3) { transition-delay: 0.3s; }
.trust-section.section-reveal.active .trust-item:nth-child(4) { transition-delay: 0.4s; }

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes attention-pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-primary.open-simulator {
    animation: attention-pulse 2s infinite;
}
.btn-primary:hover, .btn-primary.open-simulator:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
    animation-play-state: paused;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 4px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    transition: var(--transition);
}
.header.scrolled .header-container {
    height: 70px;
}

.logo {
    height: 150px; /* Aumentado mais 10% */
    width: auto;
    object-fit: contain;
    position: absolute;
    top: 80%; /* Movido mais para a borda inferior */
    transform: translateY(-50%);
    left: 24px; /* margem do container */
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 140px; /* Espaço para a logo absoluta não cobrir o texto */
}
.logo-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.1;
}
.logo-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}
.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid #eee;
}
.mobile-nav.active {
    display: block;
    animation: slideUpFade 0.3s ease forwards;
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
}
.mobile-btn {
    margin-top: 10px;
    width: 100%;
}

/* Hero Section */
/* Hero Section Enhanced */
.hero {
    position: relative;
    padding: 140px 0 90px;
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: #f8faff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.08) 0, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.1) 0, transparent 50%), 
        radial-gradient(at 50% 100%, rgba(16, 185, 129, 0.05) 0, transparent 50%),
        radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.05) 0, transparent 50%);
    background-size: 100% 100%;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Glassmorphism & Glow Effects */
.hero-featured-card {
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(79, 70, 229, 0.05); /* Soft glow */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hero-featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(79, 70, 229, 0.15); /* Stronger glow on hover */
}

/* Typography Enhancements */
.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800; /* Extra Bold */
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.benefit-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 8px;
    border-left: 3px solid var(--primary);
}

.hero-list {
    margin-bottom: 32px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-list i {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.hero-list li:hover i {
    transform: scale(1.1);
    background: var(--accent);
    color: white;
}

/* Social Proof Bar */
.social-proof-hero {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
    background: #e5e7eb;
}

/* Animations Classes */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }



.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-form-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.6s;
}

.hero-form-header {
    margin-bottom: 24px;
    text-align: left;
}

.hero-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.hero-form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-form-header p i {
    color: #10B981;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.modern-card .card-header {
    margin-bottom: 24px;
    text-align: center;
}
.modern-card .card-header i {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}
.card-list i {
    color: var(--primary);
    margin-top: 4px;
}

.whatsapp-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-dark);
    padding: 12px;
    border-radius: 12px;
    margin-top: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hero Featured Card Styling */
.hero-featured-card {
    border: 2px solid var(--primary-light);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
    position: relative;
    padding: 40px 32px;
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.hero-featured-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.clean-price-box {
    text-align: center;
    margin: 24px 0;
    padding: 24px 16px;
    background: linear-gradient(145deg, #F0F9FF, #FFFFFF);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 4px 10px rgba(0,0,0,0.03);
}

.clean-price-box .price-prefix {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.clean-price-box .price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.clean-price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.clean-price-box .value {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.clean-price-box .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin-bottom: 24px;
}

.premium-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 14px;
}

.premium-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

.card-footnote {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.card-footnote i {
    color: var(--secondary);
    margin-right: 4px;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Planos Carousel */
.carousel-planos-container {
    padding: 20px 0;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-planos-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    touch-action: pan-y; /* Melhora a fluidez em dispositivos touch */
}

.carousel-planos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-out;
    width: 100%;
}

.plano-card {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 cards visible on desktop, subtracting 2 gaps of 20px */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    background: #fff;
    cursor: pointer;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.plano-card:active {
    cursor: grabbing;
}

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

.plano-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
    object-fit: cover;
}

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



/* Base Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    opacity: 1;
}

.carousel-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 10px auto 0;
    line-height: 1.4;
}

.cards-fallback-text {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
    margin-top: 32px;
    padding: 0 20px;
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .carousel-planos-track {
        gap: 16px;
    }
    .plano-card {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 cards visible */
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .carousel-planos-track {
        gap: 10px;
    }
    .plano-card {
        flex: 0 0 100%; /* Voltou para 1 card visible */
        border-radius: 12px;
    }
    .plano-card img {
        border-radius: 12px;
    }
}

/* Price Highlights Hierarchy */
.price-highlight {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    display: inline-block;
    padding: 0 4px;
    background: linear-gradient(120deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0) 100%);
    border-radius: 4px;
}

.price-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

/* Operadoras */
.operadoras {
    background: white;
    overflow: hidden;
    padding: 80px 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    width: calc(200px * 18); /* Width * Total Items */
    animation: scroll 30s linear infinite;
}

.carousel-track:has(.carousel-logo:hover) {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 9)); } /* Move exactly half */
}

.carousel-logo {
    width: 250px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}
.carousel-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}
.carousel-logo.porto-seguro img,
.carousel-logo img[alt*="Porto"] {
    transform: scale(1.3);
}
.carousel-logo:hover img {
    transform: scale(1.1);
}
.carousel-logo.porto-seguro:hover img,
.carousel-logo:hover img[alt*="Porto"] {
    transform: scale(1.4);
}

/* Sobre */
.sobre {
    background-color: var(--bg-main);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
}
.about-image {
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px; /* Reduzindo tamanho horizontal */
    height: 480px; /* Reduzindo de 600px para 480px */
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0 auto;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 5s ease-in-out infinite reverse;
}
.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
.about-content .highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}
.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}
.trust-item:hover .trust-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-md);
}
.trust-item h4 {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: none;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.faq-item:has(.faq-question.active) {
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.faq-item:has(.faq-question.active)::before {
    background-color: var(--primary);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B; /* Slate 800 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    background: rgba(79, 70, 229, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.faq-question.active {
    color: var(--primary);
    padding-bottom: 16px;
}

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

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: #475569; /* Slate 600 */
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Localização */
.localizacao {
    background-color: var(--bg-main);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.location-info .info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.location-info .info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.location-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.map-btn {
    margin-top: 24px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
}

/* Call to Action */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

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

.cta-section h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1); /* Mantém branco caso a imagem base seja preta */
    margin-bottom: 20px;
}

.footer-jcluz-logo {
    max-height: 80px; /* A altura da caixa estrutural continua intacta */
    margin-bottom: 20px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
    transform: scale(2) translateY(32px); /* Empurrada mais ainda para baixo de forma acentuada */
    transform-origin: center bottom;
}

.footer-text-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.footer-text-brand strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}
.footer-text-brand span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 80%;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    color: var(--secondary); /* Cyan color para destacar */
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.partner-text {
    color: var(--text-light);
    margin-bottom: 8px;
}
.partner-text strong {
    color: white;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--secondary);
}
.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
}
.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
}
.social-links a[aria-label="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-links a[aria-label="Facebook"] {
    background: #1877F2;
}
.social-links a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.floating-wa:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
    color: white;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}
.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

/* Modal / Simulador */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}
.close-modal:hover {
    background: #E5E7EB;
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid #F3F4F6;
}
.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-right: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #F3F4F6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 16.66%;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-body {
    padding: 30px 40px;
    position: relative;
    min-height: 300px;
}

.sim-form-direct .form-row {
    display: flex;
    gap: 16px;
}
.sim-form-direct .half {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}
.sim-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #F9FAFB;
}
.sim-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: white;
}
.sim-form-direct .half {
    flex: 1;
}
.radio-options {
    display: flex;
    gap: 12px;
}
.radio-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}
.radio-box:has(input:checked) {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
}
.human-support-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
    background: #F0FDF4;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}
.human-support-text i {
    color: #10B981;
    margin-right: 8px;
}
.support-expectation {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.btn-whatsapp-giant {
    background-color: #25D366;
    color: white;
    font-size: 1.3rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    width: 100%;
}
.btn-whatsapp-giant:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-giant i {
    font-size: 1.6rem;
}


/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-left h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .desktop-nav, .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-container, .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        text-align: left;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-list {
        display: inline-block;
        text-align: left;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        margin-bottom: 40px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .logo {
        height: 110px;
        top: 75%;
        left: 16px;
    }
    .logo-area {
        padding-left: 100px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-left h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-container {
        gap: 30px;
    }
    
    .glass-card {
        padding: 24px;
    }

    .hero-form-card {
        padding: 24px 20px;
    }
    
    .hero-form-header h3 {
        font-size: 1.25rem;
    }

    .hero-featured-card {
        padding: 24px 20px;
    }
    
    .hero-featured-card h3 {
        font-size: 1.3rem;
    }
    
    .clean-price-box {
        margin: 16px 0;
        padding: 16px;
    }
    
    .clean-price-box .value {
        font-size: 3.5rem;
    }
    
    .about-image {
        height: 350px;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 16px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-left, .footer-right {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-desc {
        max-width: 100%;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-jcluz-logo {
        transform: scale(1.5) translateY(20px);
    }

    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    .modal-header, .modal-body {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }

    .sim-form-direct .form-row {
        flex-direction: column;
        gap: 0;
    }

    .sim-form-direct .half {
        width: 100%;
    }

    .sim-input {
        padding: 14px;
    }

    .sim-step h4 {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .sim-option {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .step-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .step-actions .btn {
        width: 100%;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .wa-tooltip {
        display: none;
    }

    .logo {
        height: 90px;
        top: 70%;
        left: 12px;
    }
    .logo-area {
        padding-left: 80px;
    }
    .logo-name {
        font-size: 1.05rem;
    }
    .logo-role {
        font-size: 0.65rem;
    }

    .location-info {
        padding: 10px;
    }
    .location-info h3 {
        font-size: 1.2rem;
    }
    .location-map {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
    }
    
    .options-grid.cols-2 {
        grid-template-columns: 1fr;
    }

    .clean-price-box .value {
        font-size: 3.2rem;
    }

    .logo {
        height: 75px;
        top: 65%;
        left: 10px;
    }
    .logo-area {
        padding-left: 65px;
    }
    .logo-name {
        font-size: 0.95rem;
    }
    .logo-role {
        display: none;
    }
}
