/* ============================================
   LANDING PAGE CSS - FINANÇAS ASSOCIADOS NASCENTE
   ============================================ */

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVBAR - EXATAMENTE IGUAL AO SISTEMA PRIVADO
   ============================================ */

.modern-navbar-landing {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1040;
}

.modern-navbar-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.modern-navbar-landing .container {
    position: relative;
    z-index: 2;
    padding: 0.8rem 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-brand img {
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.navbar-toggler {
    border: 2px solid rgba(116,185,255,0.3);
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(116,185,255,0.1) 0%, rgba(26,188,156,0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.navbar-toggler:hover::before {
    left: 100%;
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, rgba(116,185,255,0.2) 0%, rgba(26,188,156,0.2) 100%);
    border-color: rgba(116,185,255,0.5);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(116,185,255,0.3);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28116, 185, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
}

/* Links de navegação - Sistema Privado */
.nav-link-landing {
    color: #ecf0f1 !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    margin: 0 0.3rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.nav-link-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.nav-link-landing:hover::before {
    left: 100%;
}

.nav-link-landing:hover {
    background: linear-gradient(135deg, rgba(116,185,255,0.2) 0%, rgba(26,188,156,0.2) 100%);
    transform: translateY(-2px) scale(1.02);
    color: #74b9ff !important;
    box-shadow: 0 8px 25px rgba(116,185,255,0.3);
    border-color: rgba(116,185,255,0.3);
}

.nav-link-landing i {
    margin-right: 0.6rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-link-landing:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Link ativo */
.nav-link-landing.active {
    background: linear-gradient(135deg, rgba(116,185,255,0.25) 0%, rgba(26,188,156,0.25) 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(116,185,255,0.2);
    border-color: rgba(116,185,255,0.4);
}

/* Dropdown toggle arrow */
.nav-link-landing.dropdown-toggle::after {
    margin-left: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-color: #74b9ff;
}

.nav-link-landing.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) scale(1.2);
    border-top-color: #1abc9c;
}

/* DROPDOWN EXECUTIVO - EXATAMENTE IGUAL AO SISTEMA PRIVADO */
.nav-item.dropdown {
    position: relative;
}

/* Garantir que o body seja o container de posicionamento */
body {
    position: relative;
}

.landing-dropdown {
    position: fixed !important;
    top: auto !important;
    z-index: 99999 !important;
    
    /* Visual */
    background: linear-gradient(135deg, rgba(26,26,46,0.98) 0%, rgba(22,33,62,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(116,185,255,0.3);
    border-radius: 12px;
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.4),
        0 0 0 1px rgba(116,185,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    
    /* Tamanho e espaçamento */
    min-width: 200px;
    max-width: 220px;
    padding: 0.6rem 0;
    margin: 0;
    
    /* Animação */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Overflow para efeitos */
    overflow: hidden;
    
    /* Pointer events */
    pointer-events: none;
}

/* Dropdown ativo */
.landing-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

/* Garantir z-index do navbar */
.modern-navbar-landing {
    position: relative;
    z-index: 1040;
}

/* Efeito shimmer de fundo */
.landing-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(116,185,255,0.1), 
        transparent
    );
    animation: shimmerDropdown 3s infinite;
    z-index: 1;
}

@keyframes shimmerDropdown {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Itens do dropdown */
.landing-dropdown-item {
    color: #ecf0f1 !important;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 2;
    margin: 0.1rem 0.6rem;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Borda lateral animada */
.landing-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, #74b9ff 0%, #1abc9c 100%);
    border-radius: 0 4px 4px 0;
    transition: transform 0.3s ease;
}

/* Efeito de brilho no hover */
.landing-dropdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(116,185,255,0.1), 
        transparent
    );
    transition: left 0.5s ease;
    border-radius: 12px;
}

/* Estados hover */
.landing-dropdown-item:hover {
    background: linear-gradient(135deg, 
        rgba(116,185,255,0.15) 0%, 
        rgba(26,188,156,0.1) 100%
    ) !important;
    color: #74b9ff !important;
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(116,185,255,0.2);
}

.landing-dropdown-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.landing-dropdown-item:hover::after {
    left: 100%;
}

/* Ícones */
.landing-dropdown-item i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.landing-dropdown-item:hover i {
    transform: scale(1.1) rotate(6deg);
    color: #74b9ff;
}

/* Botão Login Desktop - Sistema Privado */
.btn-login-landing {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 600;
    margin-left: 1rem;
    border: 2px solid rgba(255,255,255,0.2) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.btn-login-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-login-landing:hover::before {
    left: 100%;
}

.btn-login-landing:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(231,76,60,0.4);
    color: #ffffff !important;
}

.btn-login-landing i {
    margin-right: 0.5rem;
    color: #ffffff !important;
}

.btn-login-landing:hover i {
    color: #ffffff !important;
}

/* MENU MOBILE - EXATAMENTE IGUAL AO SISTEMA PRIVADO */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #1a1a2e;
        margin-top: 1rem;
        border-radius: 20px;
        border: 2px solid #74b9ff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        overflow: hidden;
        position: relative;
        padding: 0;
    }
}

.mobile-menu-header-landing {
    background: #74b9ff;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.mobile-menu-header-landing i {
    font-size: 1.3rem;
}

.mobile-menu-section-landing {
    padding: 0;
    margin: 0;
}

.mobile-nav-link-landing {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    margin: 0;
    border-radius: 0;
    background: transparent;
}

.mobile-nav-link-landing:hover {
    background: rgba(116,185,255,0.15);
    color: #74b9ff;
    transform: translateX(5px);
}

.mobile-nav-link-landing i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.mobile-menu-footer-landing {
    background: rgba(0,0,0,0.3);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.mobile-login-btn-landing {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.mobile-login-btn-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
    color: #ffffff !important;
}

.mobile-login-btn-landing i {
    margin-right: 0.5rem;
    color: #ffffff !important;
}

.mobile-login-btn-landing:hover i {
    color: #ffffff !important;
}

/* Responsividade Menu Mobile */
@media (max-width: 767.98px) {
    .mobile-menu-header-landing {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
    
    .mobile-nav-link-landing {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link-landing i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .mobile-menu-footer-landing {
        padding: 0.75rem 1rem;
    }
    
    .mobile-login-btn-landing {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-header-landing {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .mobile-nav-link-landing {
        padding: 0.625rem 0.875rem;
    }
    
    .mobile-login-btn-landing {
        width: 100%;
        justify-content: center;
    }
}

/* Dropdown responsividade mobile */
@media (max-width: 768px) {
    .landing-dropdown {
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background-image: url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Overlay escuro sobre a imagem */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f2136d1;
    z-index: 1;
}

/* Garante que o conteúdo fique acima do overlay */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

.badge-primary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: #28a745;
}

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

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 1em;
}

.hero-cta .btn-primary {
    background: #28a745;
    border: none;
    box-shadow: 0 5px 20px rgba(40,167,69,0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(40,167,69,0.4);
}

.hero-cta .btn-outline-primary {
    border: 2px solid white;
    color: white;
}

.hero-cta .btn-outline-primary:hover {
    background: white;
    color: var(--primary);
}

.hero-trust {
    color: rgba(255,255,255,0.8);
}

.hero-trust i {
    color: #28a745;
    margin-right: 0.3rem;
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Ocultar imagem no hero em mobile e tablets (orientação vertical) */
@media (max-width: 1199.98px) {
    .hero-image {
        display: none !important;
    }
}

/* Mostrar imagem apenas em desktop (lg e acima) */
@media (min-width: 992px) {
    .hero-image {
        display: block !important;
    }
}

.hero-image img {
    border: 8px solid rgba(255,255,255,0.2);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
}

.floating-card small {
    color: #6c757d;
    font-size: 0.8rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-box {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   GLOBAL SECTION STYLES
   ============================================ */

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ============================================
   PROBLEMS SECTION - CAROUSEL
   ============================================ */

.problems-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.problems-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    min-height: 700px; /* Aumentado para acomodar conteúdo */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 700px; /* Altura mínima garantida */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3rem;
    display: flex;
    align-items: flex-start; /* Alinhamento no topo para conteúdo longo */
    overflow-y: auto; /* Permite scroll se necessário */
}

/* Slide introdutório pode ficar centralizado */
.carousel-slide[data-slide="0"] {
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

/* Slide 1 - Introdução */
.slide-content {
    width: 100%;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.slide-badge i {
    font-size: 1.2rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.slide-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
}

.slide-stats .stat-text {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    margin-top: 0.5rem;
    max-width: 200px;
}

/* Problem Slides */
.slide-problem {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-header i {
    font-size: 3rem;
    color: #e74c3c;
    padding: 1rem;
    background: rgba(231,76,60,0.1);
    border-radius: 20px;
}

.problem-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    flex: 1;
}

.problem-lead {
    font-size: 1.4rem;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.2rem;
    background: rgba(108,117,125,0.05);
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.problem-consequences {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.problem-consequences li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #495057;
    position: relative;
    padding-left: 2rem;
}

.problem-consequences li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.problem-consequences li:last-child {
    border-bottom: none;
}

.reality-check {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Market Comparison */
.market-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.competitor-price, .our-solution {
    text-align: center;
    padding: 1.2rem;
    border-radius: 15px;
}

.competitor-price {
    background: rgba(231,76,60,0.1);
    border: 2px solid rgba(231,76,60,0.2);
}

.our-solution {
    background: rgba(40,167,69,0.1);
    border: 2px solid rgba(40,167,69,0.2);
}

.competitor-name, .solution-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-range, .our-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-range {
    color: #e74c3c;
}

.our-price {
    color: #28a745;
}

.additional-costs, .our-benefits {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}

.vs-indicator {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Complexity Comparison */
.complexity-reality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.traditional-erp, .our-approach {
    padding: 1.5rem;
    border-radius: 15px;
}

.traditional-erp {
    background: rgba(231,76,60,0.05);
    border: 2px solid rgba(231,76,60,0.1);
}

.our-approach {
    background: rgba(40,167,69,0.05);
    border: 2px solid rgba(40,167,69,0.1);
}

.traditional-erp h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.our-approach h4 {
    color: #28a745;
    margin-bottom: 1rem;
}

.traditional-erp ul, .our-approach ul {
    list-style: none;
    padding: 0;
}

.traditional-erp li, .our-approach li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.traditional-erp li:last-child, .our-approach li:last-child {
    border-bottom: none;
}

/* Control Scenarios */
.control-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.without-control, .with-control {
    padding: 1.5rem;
    border-radius: 15px;
}

.without-control {
    background: rgba(231,76,60,0.05);
    border: 2px solid rgba(231,76,60,0.1);
}

.with-control {
    background: rgba(40,167,69,0.05);
    border: 2px solid rgba(40,167,69,0.1);
}

.without-control h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.with-control h4 {
    color: #28a745;
    margin-bottom: 1rem;
}

.without-control ul, .with-control ul {
    list-style: none;
    padding: 0;
}

.without-control li, .with-control li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.without-control li:last-child, .with-control li:last-child {
    border-bottom: none;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    background: #f8f9fa;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #1a1a2e;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: #1a1a2e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26,26,46,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #1a1a2e;
    transform: scale(1.2);
}

.indicator:hover {
    background: #1a1a2e;
}

/* Progress Bar */
.carousel-progress {
    height: 4px;
    background: rgba(26,26,46,0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    width: 20%;
    transition: width 0.6s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .carousel-slides {
        min-height: 950px; /* Altura maior válida para celulares grandes e tablets */
    }
    
    .carousel-slide {
        padding: 1.5rem 1.5rem 3.5rem; /* mesmo padrão de espaço inferior usado em mobile */
        min-height: 950px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .market-comparison, .complexity-reality, .control-scenarios {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-indicator {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .carousel-slides {
        min-height: 950px; /* Aumentado para evitar corte de conteúdo em mobile */
    }
    
    .carousel-slide {
        padding: 1.5rem 1.5rem 3.5rem; /* mais espaço embaixo para não encostar nos controles */
        min-height: 950px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-header {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-header h3 {
        font-size: 1.8rem;
    }
    
    .slide-stats {
        gap: 2rem;
    }
    
    .slide-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .carousel-controls {
        padding: 1.5rem 2rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .carousel-slides {
        min-height: 1050px; /* Máxima altura para telas pequenas, evitando corte */
    }
    
    .carousel-slide {
        padding: 1rem 1rem 4rem; /* ainda mais espaço inferior em telas bem pequenas */
        min-height: 1050px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .problem-header i {
        font-size: 2.5rem;
        padding: 0.8rem;
    }
    
    .slide-stats {
        gap: 1.5rem;
    }
    
    .carousel-controls {
        padding: 1rem 1.5rem;
    }
}

.problem-icon i, .solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.problem-card h4, .solution-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.problem-list li:last-child, .solution-list li:last-child {
    border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

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

    .hero-section {
        padding: 120px 0 80px;
        background-attachment: scroll; /* Remove fixed em mobile para performance */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Hero centralizado em mobile quando imagem está oculta */
    .hero-section .row {
        justify-content: center;
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Stats: cards mais estreitos e centralizados em mobile */
    .stats-section .stat-box {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
}
