
/* === Block 1 (lines 99-4178) === */
    :root {
        --azul-global: #0b193e;
        --azul-global-400: #132a69;
        --azul-global-600: #030813;
        --amarelo-global: #ffb600;
        --amarelo-global-400: #ffc533;
        --amarelo-global-600: #cc9200;
         --header-height: 64px;
    }

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

    body {
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
        background: #f8fafc;
        color: #334155;
    }

    /* Navigation */
    .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
    height: var(--header-height);
    padding: 0;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 45px;
        width: auto;
    }

    .nav-link {
    color: #000 !important;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0 1.5rem !important;
    height: 100%;
    display: flex;
    align-items: center;
    border: none;
    transition: opacity 0.2s;
    opacity: 0.7;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--amarelo-global) !important;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--amarelo-global);
    }
    .tracking-minimal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    /* Main Container */
    .main-container {
        height: 100vh;
        position: relative;
        overflow: hidden;
        padding-bottom: 60px; /* Reduzido para acomodar footer menor */
    }

    .section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        padding-top: 80px;
    }

    .section.active {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    /* Hero Section */
   .hero-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0 60px 0; /* Reduzido de 120px/100px */
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(11,25,62,0.1)" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
     transform: rotate(-15deg);
}

    .hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0; /* Remove margem superior extra */
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduzido de 1.5rem para diminuir o espaço */
    margin-top: -20px; /* Mantém como está */
}
.hero-right-content h3 {
    margin-bottom: 0.5rem !important; /* Reduz o espaço abaixo do h3 */
}
.hero-right-content h4 {
    margin-top: 0 !important; /* Remove margem superior do h4 */
}
.hero-subtitle {
    margin-top: 0.5rem !important; /* Ajusta margem superior do parágrafo */
}

    .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--azul-global);
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

    .hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

    .highlight {
        color: var(--amarelo-global);
    }

    /* Buttons */
    .btn-primary-custom {
        background: var(--amarelo-global);
        border: none;
        color: var(--azul-global);
        font-weight: 600;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
         min-width: 280px;
    }

    .btn-primary-custom:hover {
        background: var(--amarelo-global-400);
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(255, 182, 0, 0.4);
        color: var(--azul-global);
    }

    .btn-outline-custom {
        border: 2px solid var(--amarelo-global);
        color: var(--amarelo-global);
        background: transparent;
        font-weight: 600;
        padding: 13px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
          min-width: 280px;
    }

    .btn-outline-custom:hover {
        background: var(--amarelo-global);
        color: var(--azul-global);
        transform: translateY(-2px);
    }

    /* Features */
    .features-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
        background: rgba(11, 25, 62, 0.05);
        border-radius: 25px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .feature-item:hover {
        background: rgba(255, 182, 0, 0.1);
        transform: translateY(-2px);
    }

    .feature-item .icon {
        font-size: 1.2rem;
        color: var(--amarelo-global);
    }

    .feature-item .text {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--azul-global);
    }

    /* Quick Quote Section in Hero */
    .quick-quote {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(11, 25, 62, 0.1);
        border-radius: 20px;
        padding: 2rem;
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-width: 500px;
    }

    .quick-quote h5 {
        color: var(--azul-global);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

    .form-control, .form-select {
        border: 1px solid rgba(11, 25, 62, 0.2);
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--amarelo-global);
        box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
    }

    .form-floating > label {
        color: #64748b;
        font-size: 0.9rem;
    }

    /* Step indicators */
    .step-indicators {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 2rem;
    }

    .step-indicator {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e2e8f0;
        color: #64748b;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .step-indicator.active {
        background: var(--amarelo-global);
        color: var(--azul-global);
        transform: scale(1.1);
    }

    .step-indicator.completed {
        background: #22c55e;
        color: white;
    }

    /* Service Cards */
    .service-card {
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
        border-color: var(--amarelo-global);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .service-card.selected {
        border-color: var(--amarelo-global);
        background: rgba(255, 182, 0, 0.05);
    }

    /* Como Funciona Section */
    .como-funciona {
        background: linear-gradient(135deg, var(--azul-global-400) 0%, var(--azul-global) 100%);
        color: white;
    }

    .step {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: var(--amarelo-global);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        font-weight: 700;
        color: var(--azul-global);
    }

    .step::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--amarelo-global), transparent);
    }

    .step:last-child::after {
        display: none;
    }

    /* Seja CORI Section */
    .seja-cori {
        background: linear-gradient(135deg, var(--azul-global-600) 0%, var(--azul-global) 100%);
        color: white;
    }

    .cori-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 182, 0, 0.2);
        border-radius: 25px;
        padding: 3rem;
        text-align: center;
        backdrop-filter: blur(15px);
        transition: all 0.3s ease;
    }

    .cori-card:hover {
        transform: translateY(-10px);
        border-color: var(--amarelo-global);
        box-shadow: 0 25px 50px rgba(255, 182, 0, 0.1);
    }

    /* Modal Styles */
    .modal-content {
        background: white;
        border-radius: 20px;
        border: none;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem 1rem;
    }

    .modal-body {
        padding: 2rem;
    }

    /* Rastreamento Section */
    .rastreamento {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        color: var(--azul-global);
    }
    /* Adicione para mobile */
@media (max-width: 991px) {
    /* Reset geral */
    html, body {
        background: #ffffff !important;
        min-height: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Remove overflow que pode estar causando scroll extra */
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    /* Ajusta o main container */
    .main-container {
        background: #ffffff !important;
        min-height: auto !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    @media (max-width: 991px) {
    /* Remove backgrounds de todas as sections EXCETO seja-cori */
    .section:not(.seja-cori) {
        background: #ffffff !important;
    }
}
    
    /* Específico para a última section */
    .rastreamento,
    .section:last-child,
    #rastreamento {
    min-height: 100vh !important; /* Altura mínima inicial */
    height: auto !important; /* Permite expansão */
    overflow: visible !important;
    position: relative;
    padding-bottom: 6rem !important; /* Espaço extra no final */
}
/* Garantir que o container interno também expanda */
#rastreamento .container {
    min-height: auto !important;
    height: auto !important;
}

/* Ajustar o card de resultados */
#rastreamento-resultado {
    margin-top: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* Garantir que o conteúdo seja visível sobre o gradiente */
#rastreamento .rastreamento-results {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Se houver um ::before ou ::after causando problemas */
#rastreamento::before,
#rastreamento::after {
    display: none !important;
}

/* Ajustar cores dos elementos dentro da seção escura */
#rastreamento .rastreamento-status,
#rastreamento .rastreamento-progress,
#rastreamento .rastreamento-timeline {
    background: white !important;
}       

    /* Footer sem margem inferior */
    .footer {
        margin-bottom: 0 !important;
        background: #ffffff !important;
    }
    
    /* Remove qualquer pseudo-elemento que possa estar criando espaço */
    .main-container::after,
    .main-container::before,
    body::after,
    body::before {
        display: none !important;
    }
}

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

    .animate-on-scroll {
        animation: fadeInUp 0.8s ease-out;
    }

/* Footer */
/* ========== FOOTER NÃO FIXO ========== */

/* Footer sempre relativo (não fixo) */
.footer {
    position: relative !important;
    bottom: auto !important;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(11, 25, 62, 0.1);
    z-index: 100;
    padding: 30px 0; /* Aumenta o padding para melhor espaçamento */
    margin-top: 80px; /* Espaço antes do footer */
}

/* Remove o comportamento fixo no desktop */
@media (min-width: 992px) {
    .footer {
        position: relative !important; /* Força position relative */
        bottom: auto !important;
        padding: 30px 0; /* Mantém padding consistente */
        margin-top: 80px; /* Mantém margem superior */
    }
}

/* Remove padding-bottom do body que era necessário para o footer fixo */
body {
    padding-bottom: 0 !important;
}

/* Ajusta o padding da última seção antes do footer */
.section:last-of-type,
#rastreamento {
    padding-bottom: 80px;
}

/* Container do footer */
.footer .container {
    max-width: 100%;
    padding: 0 20px;
}

/* Conteúdo do footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    position: relative;
}

/* Informações do footer */
.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 0;
}

.separator {
    color: #cbd5e1;
    font-size: 0.8rem;
}

/* Features no footer */
.features-container-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.features-container-footer .feature-item {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.features-container-footer .feature-item:hover {
    background: none;
    transform: none;
}

.features-container-footer .feature-item .icon {
    font-size: 1.1rem;
    color: var(--amarelo-global);
}

.features-container-footer .feature-item .text {
    font-size: 0.85rem;
    color: var(--azul-global);
    font-weight: 500;
}

/* Links sociais */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    right: 0;
}

.social-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.social-links a:hover {
    color: var(--amarelo-global);
}

.social-links i {
    font-size: 1.2rem;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 991px) {
    .footer {
        padding: 20px 0;
        margin-top: 50px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-info {
        position: static;
        font-size: 0.8rem;
        justify-content: center;
        order: 1;
    }
    
    /* Esconde os ícones das features no mobile */
    .features-container-footer {
        display: none !important;
    }
    
    .social-links {
        position: static;
        justify-content: center;
        order: 2;
        margin-top: 10px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 15px 0;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-links a {
        font-size: 0.75rem;
    }
}
/* Corrige o fundo cinza */
@media (max-width: 991px) {
    body {
        background: #ffffff !important; /* Fundo branco */
    }
    
    /* Se o cinza vier de outro elemento */
    .main-container::after {
        display: none;
    }
}





 


/* Hero Rastreamento */
.hero-rastreamento {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 25, 62, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-rastreamento h6 {
    color: var(--azul-global);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-rastreamento .form-control {
    border: 1px solid rgba(11, 25, 62, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-rastreamento .form-control:focus {
    border-color: var(--amarelo-global);
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-simular {
        padding: 1.5rem;
    }
    
    .hero-trust-card {
        padding: 1rem;
    }
    
    .hero-rastreamento {
        padding: 1.5rem;
    }
    
    .hero-trust-item i {
        font-size: 1.5rem;
    }
    
    .hero-trust-item small {
        font-size: 0.7rem;
    }
    
    .hero-rastreamento h6 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-simular,
    .hero-trust-card,
    .hero-rastreamento {
        padding: 1rem;
    }
    
    .hero-trust-item {
        padding: 0.25rem;
    }
    
    .hero-trust-item i {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-trust-item small {
        font-size: 0.65rem;
    }
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
}

.hero-trust-item i {
    font-size: 1.5rem;
    color: var(--amarelo-global);
    margin-bottom: 0.5rem;
}

.hero-trust-item small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--azul-global);
    line-height: 1.1;
}

/* Modal Customizations */
.modal-content {
    border-radius: 25px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 2rem 1rem;
    border-radius: 25px 25px 0 0;
}

.modal-body {
    padding: 2rem;
}

/* Service Cards no Modal */
.service-card {
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--amarelo-global);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: var(--amarelo-global);
    background: rgba(255, 182, 0, 0.05);
}

/* Mobile Responsiveness para Hero */
@media (max-width: 768px) {
    .hero-actions {
        padding: 1.5rem;
    }
    
    .hero-trust-indicators {
        padding: 1rem;
    }
    
    .hero-trust-item i {
        font-size: 1.2rem;
    }
    
    .hero-trust-item small {
        font-size: 0.7rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-mini-section {
        padding: 20px 0;
    }
    
    .trust-mini-text {
        font-size: 0.75rem;
    }
    
    .trust-mini-icon {
        font-size: 1.5rem;
    }
    
    .mini-trust-badges {
        gap: 8px;
    }
    
    .mini-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 576px) {
    .trust-mini-card {
        padding: 0.75rem 0.25rem;
    }
    
    .trust-mini-text {
        font-size: 0.7rem;
    }
    
    .mini-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

    
/* Use Cases Section */
.use-cases {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 25, 62, 0.1);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 182, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amarelo-global);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    height: 100%;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--amarelo-global);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-global);
    font-weight: 600;
    font-size: 1.5rem;
}
    /* Mobile Responsiveness */
    @media (max-width: 1200px) {
        .footer {
            padding: 15px 0;
        }
        
        .footer-content {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
        
        .footer-info {
            font-size: 0.8rem;
        }
        
        .features-container-footer {
            order: -1;
            gap: 15px;
            margin-bottom: 5px;
        }
        
        .features-container-footer .feature-item {
            padding: 4px 10px;
        }
        
        .social-links {
            font-size: 0.8rem;
            gap: 10px;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

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

        .btn-primary-custom,
        .btn-outline-custom {
            padding: 12px 25px;
            font-size: 1rem;
        }

        .cori-card {
            padding: 1.5rem;
        }

        .step::after {
            display: none;
        }

        .features-container {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .feature-item {
            width: 90%;
            justify-content: center;
        }

        .features-container-footer {
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .features-container-footer .feature-item {
            flex: 0 1 auto;
            min-width: auto;
            padding: 8px;
        }
        
        .features-container-footer .feature-item .text {
            display: none; /* Esconde o texto em mobile, mostra só ícones */
        }

        .footer-content {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
    }
    

/* Números Section */
.numeros-section {
    background: #ffffff;
    color: var(--azul-global);
}

.number-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 182, 0, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.number-icon {
    width: 70px;
    height: 70px;
    background: var(--amarelo-global);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--azul-global);
}

.number-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-global);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.number-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--amarelo-global);
}

.number-label {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
}

/* Mídia Section */
.midia-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--azul-global);
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 0 1 200px;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 182, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--amarelo-global);
}

.badge-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--azul-global);
}

.badge-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.media-logo-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    /* Define tamanho fixo para o container */
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo-item:hover {
    opacity: 1;
    transform: scale(1.05); /* Reduzido de 1.1 para 1.05 */
}

.media-logo-item img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    object-fit: contain; /* Garante que a imagem caiba sem distorcer */
}

.media-logo-item:hover img {
    filter: grayscale(0%);
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .media-logos {
        gap: 20px;
        padding: 1.5rem 1rem;
        /* Grid 2x2 no mobile */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .media-logo-item {
        width: 100px;
        height: 45px;
    }
    
    .media-logo-item img {
        max-height: 35px;
    }
}

/* Normal scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Sections with normal scroll */
.main-container {
    height: auto;
    overflow: visible;
    padding-bottom: 0;
}

.section {
    position: relative;
    opacity: 1;
    visibility: visible;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Remove active class styling for sections */
.section.active {
    /* No special styling needed */
}

/* Adjust sections spacing */
.numeros-section,
.midia-section,
.como-funciona,
.seja-cori,
.rastreamento {
    padding: 100px 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .numeros-section,
    .midia-section,
    .como-funciona,
    .seja-cori,
    .rastreamento {
        padding: 60px 0;
    }
}
.card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.quick-quote .card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
}

/* Hero Main Card */
.hero-main-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 25, 62, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Trust Indicators em linha */
.trust-inline {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 1rem;
    background: rgba(255, 182, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 182, 0, 0.1);
}

.trust-inline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.trust-inline-item:hover {
    transform: translateY(-2px);
}

.trust-inline-item i {
    font-size: 1.2rem;
    color: var(--amarelo-global);
    margin-bottom: 0.25rem;
}

.trust-inline-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--azul-global);
    line-height: 1;
}

/* Hero Tracking Card */
.hero-tracking-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 25, 62, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero-tracking-card .form-control {
    border: 1px solid rgba(11, 25, 62, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-tracking-card .form-control:focus {
    border-color: var(--amarelo-global);
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    text-align: center;
    margin-top: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 15px;
}

/* Placeholder para quando não há imagem */
.illustration-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(255, 182, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    min-height: 200px;
    width: 100%;
}

.illustration-icon {
    font-size: 3rem;
    color: var(--amarelo-global);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.illustration-text {
    color: var(--azul-global);
    font-weight: 500;
    margin: 0;
    opacity: 0.6;
}

/* Esconder placeholder quando imagem carrega */
.hero-illustration img:not([style*="display: none"]) + .illustration-placeholder {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-right-content {
        margin-top: 0;
        gap: 1rem;
    }
    
    .hero-main-card {
        padding: 1.5rem;
    }
    
    .hero-tracking-card {
        padding: 1rem;
    }
    
    .trust-inline {
        padding: 0.75rem;
        gap: 5px;
    }
    
    .trust-inline-item i {
        font-size: 1rem;
    }
    
    .trust-inline-item span {
        font-size: 0.65rem;
    }
    
    .hero-illustration {
        min-height: 150px;
    }
    
    .illustration-placeholder {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .illustration-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .trust-inline {
        flex-wrap: wrap;
    }
    
    .trust-inline-item {
        flex: 0 1 50%;
        margin-bottom: 0.5rem;
    }
    
    .trust-inline-item span {
        font-size: 0.6rem;
    }
    
    .hero-illustration {
        margin-top: 0.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-main-card {
        padding: 1.5rem;
    }
    
    .hero-tracking-card {
        padding: 1rem;
    }
    
    .trust-inline {
        padding: 0.75rem;
        gap: 5px;
    }
    
    .trust-inline-item i {
        font-size: 1rem;
    }
    
    .trust-inline-item span {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .trust-inline {
        flex-wrap: wrap;
    }
    
    .trust-inline-item {
        flex: 0 1 50%;
        margin-bottom: 0.5rem;
    }
    
    .trust-inline-item span {
        font-size: 0.6rem;
    }
}
/* Adicione ao CSS */
.tracking-modal .modal-content {
    border-radius: 20px;
    border: none;
}

.tracking-modal .modal-body {
    padding: 2rem;
}

/* Botão de rastreamento no header */
.btn-track-header {
    background: rgba(255, 182, 0, 0.1);
    border: 1px solid var(--amarelo-global);
    color: var(--azul-global);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-track-header:hover {
    background: var(--amarelo-global);
    color: var(--azul-global);
    transform: translateY(-1px);
}

.hero-tracking-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 25, 62, 0.1);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.hero-tracking-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tracking-link {
    color: var(--azul-global);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-link:hover {
    color: var(--amarelo-global);
}

/* Header Moderno */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 25, 62, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

/* Logo */
.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Menu Items */
.nav-link {
    color: var(--azul-global) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--amarelo-global) !important;
    background: rgba(255, 182, 0, 0.08);
}

.nav-link.active {
    color: var(--amarelo-global) !important;
    background: rgba(255, 182, 0, 0.1);
}

.nav-link.active::after {
    display: none; /* Remove underline, usa background */
}

/* Campo de Rastreamento Moderno */
.tracking-group {
    position: relative;
    margin-right: 1rem;
}

.tracking-input {
    width: 200px;
    height: 38px;
    padding: 0 40px 0 16px;
    border: 1.5px solid rgba(11, 25, 62, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.3s ease;
    outline: none;
}

.tracking-input:focus {
    border-color: var(--amarelo-global);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.1);
    width: 220px;
}

.tracking-input::placeholder {
    color: #94a3b8;
    font-size: 0.85rem;
}

.tracking-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: var(--amarelo-global);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-global);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tracking-btn:hover {
    background: var(--amarelo-global-600);
    transform: translateY(-50%) scale(1.1);
}

.tracking-btn i {
    font-size: 0.85rem;
}

/* Botão Login Moderno */
.btn-login {
    background: transparent;
    border: 1.5px solid var(--amarelo-global);
    color: var(--azul-global);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: var(--amarelo-global);
    color: var(--azul-global);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.3);
}

/* Mobile Toggle Melhorado */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 182, 0, 0.1);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: var(--azul-global);
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 991px) {
    .tracking-group {
        width: 100%;
        margin: 1rem 0;
    }
    
    .tracking-input {
        width: 100%;
    }
    
    .tracking-input:focus {
        width: 100%;
    }
    
    .navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
}
.nav-item {
    height: 100%;
}
    
    .nav-link {
        margin: 0.25rem 0;
    }
}

/* Animação suave ao rolar */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.tracking-input-minimal {
    width: 160px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 0.875rem;
    background: #fafafa;
    transition: all 0.2s;
}

.tracking-input-minimal:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.tracking-input-minimal::placeholder {
    color: #999;
    font-weight: 300;
}

/* Botão Minimalista */
.btn-minimal {
    height: 36px;
    padding: 0 20px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-minimal:hover {
    background: #000;
    color: #fff;
}

.btn-minimal i {
    font-size: 1rem;
}

/* Login ainda mais simples */
.btn-login-minimal {
    height: 36px;
    padding: 0 16px;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: opacity 0.2s;
    opacity: 0.7;
}

.btn-login-minimal:hover {
    opacity: 1;
}

/* Mobile Toggle Mínimo */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: #000;
    font-size: 1.25rem;
}

/* Responsivo Simples */
@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        padding: 1rem 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
    }
    
    .nav-link {
        height: auto;
        padding: 0.75rem 0 !important;
    }
    
    .tracking-minimal {
        width: 100%;
        margin: 1rem 0;
    }
    
    .tracking-input-minimal {
        flex: 1;
    }
}

/* Mini Steps Container */
.mini-steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 182, 0, 0.05);
    padding: 20px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mini-step-number {
    width: 30px;
    height: 30px;
    background: var(--amarelo-global);
    color: var(--azul-global);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.mini-step-arrow {
    color: var(--amarelo-global);
    font-size: 1.5rem;
}

/* Integrated Use Case Cards */
.use-case-card-integrated {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 25, 62, 0.1);
    display: flex;
    flex-direction: column;
}

.use-case-card-integrated:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--amarelo-global);
}

.integrated-process {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.process-highlight {
    background: rgba(255, 182, 0, 0.08);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--azul-global);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mini-steps-container {
        gap: 5px;
        padding: 15px 10px;
    }
    
    .mini-step {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .mini-step span {
        display: none;
    }
    
    .mini-step-arrow {
        font-size: 1rem;
    }
}
/* Como Usar Section Minimalista */
.como-usar-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



@keyframes sweepBackground {
    to {
        left: 100%;
    }
}

/* Processo Track Animation */
.processo-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

.track-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
}

.track-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--amarelo-global);
    animation: fillTrack 3s ease-out forwards;
}

@keyframes fillTrack {
    to {
        width: 100%;
    }
}

.package-animation {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--azul-global);
    border-radius: 4px;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    animation: movePackage 3s ease-out forwards; /* Mantém 'forwards', sem loop */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.package-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: white;
    transform: translate(-50%, -50%);
}

.package-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 80%;
    background: white;
    transform: translate(-50%, -50%);
}

@keyframes movePackage {
    to {
        left: calc(100% - 30px);
    }
}

.track-stops {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.track-stop {
    text-align: center;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.track-stop.active {
    opacity: 1;
}

.stop-dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
    transition: all 0.5s ease;
}

.track-stop.active .stop-dot {
    background: var(--amarelo-global);
    border-color: var(--amarelo-global);
    transform: scale(1.2);
}

.track-stop span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.track-stop.active span {
    color: var(--azul-global);
    font-weight: 600;
}

/* Grid de Casos Minimalista */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.caso-card {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.caso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amarelo-global), var(--amarelo-global-400));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.caso-card:hover::before {
    transform: translateX(0);
}

.caso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.caso-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 182, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--amarelo-global);
    transition: all 0.3s ease;
}

.caso-card:hover .caso-icon {
    background: var(--amarelo-global);
    color: var(--azul-global);
    transform: rotateY(180deg);
}

.caso-card h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--azul-global);
    margin-bottom: 8px;
}

.caso-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.caso-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: #000000ff;
}

.caso-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.caso-meta i {
    font-size: 0.875rem;
    color: var(--amarelo-global);
}

/* CTA Minimalista */
.btn-cta-minimal {
    background: var(--azul-global);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--amarelo-global);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-cta-minimal:hover::before {
    left: 0;
}

.btn-cta-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-minimal span {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

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

/* Responsivo */
@media (max-width: 768px) {
    .processo-track {
        padding: 30px 0;
    }
    
    .track-stop span {
        font-size: 0.75rem;
    }
    
    .casos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .caso-card {
        padding: 20px;
    }
}

/* Animação de entrada com AOS alternativa */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Linha de Progresso */
.timeline-progress {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%; /* Progresso inicial em 25% (passo 1 de 4) */
    background: var(--amarelo-global);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Steps */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: white;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #9ca3af;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step.active .step-circle {
    background: var(--amarelo-global);
    border-color: var(--amarelo-global);
    color: var(--azul-global);
    transform: scale(1.1);
}

.timeline-step.completed .step-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.timeline-step h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.timeline-step.active h6 {
    color: var(--azul-global);
}

/* Hover effects */
.timeline-step:hover .step-circle {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline-progress {
        display: none;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* Timeline Animada */
.timeline-animated {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

/* Linha de Conexão */
.connection-line {
    position: absolute;
    top: 50px;
    left: 13%;
    right: 13%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

/* Progresso da Linha */
.line-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e, #10b981);
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Pacote em Movimento */
.package-moving {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--amarelo-global);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-global);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 182, 0, 0.6);
}

.package-moving.moving {
    opacity: 1;
    animation: movePackage 4s ease-in-out infinite;
}

@keyframes movePackage {
    0% {
        left: -30px;
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        left: 25%;
        transform: translateY(-50%) rotate(90deg);
    }
    50% {
        left: 50%;
        transform: translateY(-50%) rotate(180deg);
    }
    75% {
        left: 75%;
        transform: translateY(-50%) rotate(270deg);
    }
    100% {
        left: calc(100% - 10px);
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Timeline Steps */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.timeline-step.active {
    opacity: 1;
    transform: scale(1.05);
}

.timeline-step.completed {
    opacity: 1;
}

/* Círculos dos Steps */
.step-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #9ca3af;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Estados dos Círculos */
.timeline-step.active .step-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
    transform: scale(1.1);
    animation: bounce 1s ease-in-out;
}

.timeline-step.completed .step-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.timeline-step:not(.completed):not(.active) .step-circle {
    background: white;
    border-color: #e5e7eb;
    color: #9ca3af;
}

.step-circle.final {
    background: var(--amarelo-global) !important;
    border-color: var(--amarelo-global) !important;
    color: var(--azul-global) !important;
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

.timeline-step.active .pulse-ring {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1.1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    60% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Hover Effects */
.timeline-step:hover .step-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-step h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.timeline-step.active h6,
.timeline-step.completed h6 {
    color: var(--azul-global);
}

.timeline-step p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    max-width: 200px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-animated {
        padding: 0 20px;
    }
    
    .connection-line {
        display: none;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .timeline-step h6 {
        font-size: 1.1rem;
    }
}

/* Animação de entrada */
.timeline-step {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-fill-mode: both;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }

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

.timeline-step.active {
    animation: fadeInUp 0.6s ease-out forwards, scaleIn 0.3s ease-out 0.6s forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}
/* Timeline Animada */
.timeline-animated {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

/* Linha de Conexão */
.connection-line {
    position: absolute;
    top: 50px;
    left: 13%;
    right: 13%;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

/* Progresso da Linha - Cor amarela da Global */
.line-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--amarelo-global);
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ícone dos Correios em Movimento */
.correios-icon-moving {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 10px rgba(255, 182, 0, 0.3));
}

.correios-icon-moving.moving {
    opacity: 1;
    animation: moveIcon 4s ease-in-out infinite;
}

@keyframes moveIcon {
    0% {
        left: -40px;
        transform: translateY(-50%) scaleX(1);
    }
    25% {
        left: 25%;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        left: 50%;
        transform: translateY(-50%) scaleX(1);
    }
    75% {
        left: 75%;
        transform: translateY(-50%) scaleX(1);
    }
    100% {
        left: calc(100% - 20px);
        transform: translateY(-50%) scaleX(1);
    }
}

/* Timeline Steps */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Círculos - Cores ajustadas */
.step-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #9ca3af;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primeiros 3 steps - Verde quando ativo/completo */
.timeline-step:nth-child(-n+3).active .step-circle,
.timeline-step:nth-child(-n+3).completed .step-circle {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
    transform: scale(1.1);
}

/* Último step - Amarelo Global */
.timeline-step:nth-child(4).active .step-circle,
.timeline-step:nth-child(4).completed .step-circle {
    background: var(--amarelo-global);
    border-color: var(--amarelo-global);
    color: var(--azul-global);
    transform: scale(1.1);
}

/* Pulse Ring - Cor correspondente */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

.timeline-step.active .pulse-ring {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Estados dos Steps */
.timeline-step {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.timeline-step.active,
.timeline-step.completed {
    opacity: 1;
}

.timeline-step.active {
    transform: scale(1.05);
}

/* Hover Effects */
.timeline-step:hover .step-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Textos */
.timeline-step h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-step.active h6,
.timeline-step.completed h6 {
    color: var(--azul-global);
}

.timeline-step p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    max-width: 180px;
    margin: 0 auto;
}

/* Animação de entrada mais suave */
.timeline-step {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-fill-mode: both;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }

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

/* Mobile */
@media (max-width: 768px) {
    .connection-line {
        display: none;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}
/* Como Usar Section */
.como-usar-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Timeline Estática */
.timeline-static {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Linha de Conexão */
.timeline-track {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        #22c55e 0%, 
        #22c55e 33%, 
        #22c55e 66%, 
        var(--amarelo-global) 66%, 
        var(--amarelo-global) 100%
    );
    z-index: 1;
}

/* Timeline Steps */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    position: relative;
}

/* Número do Step */
.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    z-index: 3;
}

.timeline-step.last .step-number {
    border-color: var(--amarelo-global);
    color: var(--amarelo-global);
}

/* Ícone do Step */
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #22c55e;
    transition: all 0.3s ease;
}

.timeline-step.last .step-icon {
    background: #fffbeb;
    border-color: var(--amarelo-global);
    color: var(--amarelo-global);
}

/* Hover do Step */
.timeline-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Textos */
.timeline-step h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--azul-global);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    max-width: 180px;
    margin: 0 auto;
}

/* Grid de Casos */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 80px;
}

.caso-card {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--amarelo-global);
}

/* Ícone do Caso */
.caso-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--amarelo-global-600);
    margin-bottom: 20px;
}

.caso-card h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--azul-global);
    margin-bottom: 8px;
}

.caso-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Tags */
.caso-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amarelo-global-600);
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .timeline-track {
        display: none;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }
    
    .casos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
}

/* Animação sutil ao aparecer */
.timeline-step,
.caso-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }

.caso-card:nth-child(1) { animation-delay: 0.5s; }
.caso-card:nth-child(2) { animation-delay: 0.6s; }
.caso-card:nth-child(3) { animation-delay: 0.7s; }
.caso-card:nth-child(4) { animation-delay: 0.8s; }
.caso-card:nth-child(5) { animation-delay: 0.9s; }
.caso-card:nth-child(6) { animation-delay: 1s; }

/* Timeline Global Envios */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

/* Linha de fundo */
.timeline-line {
    position: absolute;
    top: 35px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

/* Container dos steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Cada step */
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Conector colorido - Azul Global */
.step-connector {
    position: absolute;
    top: 35px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--azul-global);
    z-index: 1;
    transform: translateX(-50%);
}

.process-step:last-child .step-connector {
    display: none;
}

/* Último conector - Amarelo Global */
.process-step:nth-child(3) .step-connector {
    background: linear-gradient(90deg, var(--azul-global) 0%, var(--amarelo-global) 100%);
}

/* Bolha do ícone */
.step-bubble {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    color: var(--azul-global);
    box-shadow: 0 0 0 6px rgba(11, 25, 62, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Último step - Amarelo */
.process-step.last .step-bubble {
    color: white;
    background: var(--amarelo-global);
    box-shadow: 0 0 0 6px rgba(255, 182, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.process-step:hover .step-bubble {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(11, 25, 62, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-step.last:hover .step-bubble {
    box-shadow: 0 0 0 8px rgba(255, 182, 0, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Textos */
.process-step h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--azul-global);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-bubble {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}
/* Timeline Moderna */
.modern-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

/* Barra de Progresso */
.timeline-progress-bar {
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: #f3f4f6;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, 
        var(--azul-global) 0%, 
        var(--azul-global) 67%,
        var(--amarelo-global) 100%
    );
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* Container dos Steps */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Cada Step */
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Círculo do Step */
.step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

/* Ícone Central */
.step-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #94a3b8;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Número pequeno */
.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Estados Completos (1-3) */
.step-item[data-step="1"] .step-icon,
.step-item[data-step="2"] .step-icon,
.step-item[data-step="3"] .step-icon {
    background: linear-gradient(135deg, var(--azul-global) 0%, var(--azul-global-400) 100%);
    border-color: var(--azul-global);
    color: white;
    transform: scale(0.95);
}

.step-item[data-step="1"] .step-number,
.step-item[data-step="2"] .step-number,
.step-item[data-step="3"] .step-number {
    background: var(--azul-global);
    border-color: var(--azul-global);
    color: white;
}

/* Estado Ativo (4) */
.step-item.active .step-icon {
    background: linear-gradient(135deg, var(--amarelo-global) 0%, var(--amarelo-global-400) 100%);
    border-color: var(--amarelo-global);
    color: var(--azul-global);
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 182, 0, 0.1),
                0 8px 24px rgba(255, 182, 0, 0.25);
}

.step-item.active .step-number {
    background: var(--amarelo-global);
    border-color: var(--amarelo-global);
    color: var(--azul-global);
    font-weight: 800;
}

/* Efeito de Glow */
.step-item.active .step-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amarelo-global), var(--amarelo-global-400));
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

/* Hover Effects */
.step-item:hover .step-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-item.active:hover .step-icon {
    transform: translateY(-4px) scale(1.15);
}

/* Conteúdo do Step */
.step-content h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--azul-global);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 180px;
    line-height: 1.5;
}

.step-item:hover .step-content h6 {
    color: var(--amarelo-global);
}

/* Mobile Design */
@media (max-width: 768px) {
    .modern-timeline {
        padding: 0 20px;
    }
    
    .timeline-progress-bar {
        display: none;
    }
    
    .timeline-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* Animação de entrada suave */
.step-item {
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* Section Container */
.como-usar-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Título com Destaque */
.highlight-number {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--amarelo-global), var(--amarelo-global-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

/* Container dos Cards */
.process-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
    perspective: 1000px;
}

/* Process Card */
.process-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-height: 320px;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 182, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::before {
    opacity: 1;
}

/* Card Número Grande */
.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(11, 25, 62, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

/* Card Ativo */
.process-card.active {
    border-color: var(--azul-global);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 25, 62, 0.15);
}

.process-card.active .card-number {
    color: rgba(11, 25, 62, 0.1);
}

/* Card Highlight (último) */
.process-card.highlight {
    background: linear-gradient(135deg, var(--azul-global) 0%, var(--azul-global-400) 100%);
    color: white;
}

.process-card.highlight .card-number {
    color: rgba(255, 255, 255, 0.1);
}

.process-card.highlight .card-icon {
    background: white;
    color: var(--amarelo-global);
}

.process-card.highlight h3,
.process-card.highlight p,
.process-card.highlight li {
    color: white;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--azul-global);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.process-card:hover .card-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Card Content */
.card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--azul-global);
    margin-bottom: 20px;
}

.main-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.feature-list i {
    color: #22c55e;
    font-size: 1rem;
}

/* Time Badge */
.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.time-badge.special {
    background: rgba(255, 182, 0, 0.2);
    color: var(--amarelo-global);
}

.process-card.highlight .time-badge.special {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Card Action */
.card-action {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--azul-global);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.process-card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

.process-card.highlight .card-action {
    color: white;
}

/* Navegação */
.process-navigation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--azul-global);
}

/* Animação do Botão */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 182, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 182, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 182, 0, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .process-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .process-card {
        padding: 30px;
        min-height: auto;
    }
    
    .card-number {
        font-size: 3rem;
    }
    
    .card-action {
        position: static;
        opacity: 1;
        transform: none;
        margin-top: 20px;
    }
}

/* Animação de Entrada */
.process-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }

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



/* Seção Rede Nacional */
.rede-nacional-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.rede-nacional-section h2 {
    color: var(--azul-global);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.beneficios-rede {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #333;
}

.beneficio-item i {
    color: var(--amarelo-global);
    font-size: 1.3rem;
}

.mapa-pontos {
    position: relative;
    padding: 2rem;
}

.mapa-pontos img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Trust Bar */
.trust-bar {
    background: var(--azul-global);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--amarelo-global);
}

.trust-item strong {
    color: var(--amarelo-global);
    font-size: 1.1rem;
}

/* Proposta de Valor */
.proposta-valor {
    padding: 100px 0;
    background: white;
}

.proposta-valor h2 {
    color: var(--azul-global);
    font-weight: 700;
    margin-bottom: 1rem;
}

.valor-card {
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 20px;
    background: #f8f9fa;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: white;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 182, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.valor-card:hover .icon-wrapper {
    background: var(--amarelo-global);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--azul-global);
}

.valor-card h4 {
    color: var(--azul-global);
    font-weight: 600;
    margin-bottom: 1rem;
}

.valor-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Hero subtitle extra */
.hero-subtitle-extra {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .rede-nacional-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .rede-nacional-section h2 {
        font-size: 1.8rem;
    }
    
    .beneficios-rede {
        align-items: center;
    }
    
    .trust-items {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item {
        flex: 0 1 calc(50% - 1rem);
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .proposta-valor {
        padding: 60px 0;
    }
    
    .valor-card {
        margin-bottom: 2rem;
    }
    
    .mapa-pontos {
        margin-top: 2rem;
    }
}

/* Animação de entrada */
.beneficio-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.beneficio-item:nth-child(1) { animation-delay: 0.1s; }
.beneficio-item:nth-child(2) { animation-delay: 0.2s; }
.beneficio-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge de "Novo" para destacar */
.badge-novo {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}




/* === Block 2 (lines 4329-4385) === */
/* Dropdown WhatsApp Mobile - CORRIGIDO */
.whatsapp-dropdown-mobile {
    position: fixed;
    top: 70px;
    right: 15px;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    /* IMPORTANTE: Começa escondido */
    display: none !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Quando tem a classe show, aparece */
.whatsapp-dropdown-mobile.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

/* Resto do CSS continua igual */
.whatsapp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1049;
    display: none;
}

.whatsapp-overlay.show {
    display: block;
}

@media (max-width: 400px) {
    .whatsapp-dropdown-mobile {
        right: 10px;
        left: 10px;
        width: auto;
    }
}

/* Garante que só aparece no mobile */
@media (min-width: 992px) {
    .whatsapp-dropdown-mobile,
    .whatsapp-overlay {
        display: none !important;
    }
}

/* === Block 3 (lines 4452-4520) === */
/* Opção 1: Header com botões sempre visíveis */
@media (max-width: 991px) {
    /* Container do header mobile */
    .navbar {
        padding: 10px 0;
    }
    
    /* Layout em grid para mobile */
    .navbar > .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
    }
    
    /* Logo à esquerda */
    .navbar-brand {
        grid-column: 1;
        margin: 0;
    }
    
    /* Botões de ação no centro/direita */
    .mobile-header-actions {
        grid-column: 3;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Esconde o menu hamburguer */
    .navbar-toggler {
        display: none !important;
    }
    
    /* Esconde o menu collapse mas mantém visível os botões */
    .navbar-collapse {
        display: none !important;
    }
    
    /* Estilo dos botões mobile */
    .btn-mobile-header {
        padding: 8px 12px;
        font-size: 0.875rem;
        border-radius: 20px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .btn-mobile-login {
        background: var(--azul-global);
        color: white;
        border: none;
    }
    
    .btn-mobile-whatsapp {
        background: #25D366;
        color: white;
        border: none;
    }
    
    /* Ícones menores */
    .btn-mobile-header i {
        font-size: 1rem;
    }
}

/* === Block 4 (lines 4598-4924) === */
.hero-section-unified {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.hero-section-unified::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Títulos */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--azul-global);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--amarelo-global);
}

.hero-secondary-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--azul-global);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* Benefícios inline */
.hero-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--azul-global);
    font-weight: 600;
}

.benefit-inline i {
    color: var(--amarelo-global);
    font-size: 1.2rem;
}

/* Botões */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: var(--amarelo-global);
    border: none;
    color: var(--azul-global);
}

.btn-primary-custom:hover {
    background: #e6a300;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 182, 0, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--azul-global);
    color: var(--azul-global);
}

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

/* Trust indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 25, 62, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
}

.trust-item i {
    color: var(--amarelo-global);
    font-size: 1rem;
}

.trust-item small {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mapa container */
.hero-map-container {
    position: relative;
}

.map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Floating badge */
.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--azul-global);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--amarelo-global);
    font-size: 1.2rem;
}

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

/* Pulse animation */
.map-point-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
}

.pulse {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--amarelo-global);
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--amarelo-global);
    animation: pulse-wave 2s ease-out infinite;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-section-unified {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-secondary-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-benefits {
        gap: 1.5rem;
    }
    
    .benefit-inline {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.875rem;
    }
    
    .map-wrapper {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-secondary-title {
        font-size: 1.25rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .trust-item {
        flex: 0 1 calc(50% - 0.5rem);
    }
}
    @media (max-width: 768px) {
    .hero-section-unified {
        position: relative;
        overflow: hidden;
    }
    
    .hero-map-container {
        position: absolute;
        top: 50%;
        right: -30%;
        transform: translateY(-50%);
        width: 80%;
        opacity: 0.15;
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    .floating-badge {
        display: none;
    }
}

/* === Block 5 (lines 4925-5077) === */
/* Ajuste geral para todas as seções no mobile */
@media (max-width: 768px) {
    /* Reduz padding padrão das seções */
    .section,
    section {
        padding: 40px 0 !important; /* Reduz de 60-80px para 40px */
    }
    
    /* Hero section com menos padding inferior */
    .hero-section,
    .hero-section-unified,
    #inicio {
        padding-bottom: 30px !important;
    }
    
    /* Seção "Como usar" / "Para facilitar sua vida" */
    .como-usar-section,
    .para-facilitar-section,
    .section:nth-child(2) {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Seção "Envie em 4 passos" */
    .como-funciona,
    .steps-section,
    .envie-passos-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Remove margens extras dos containers */
    .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Ajusta títulos das seções */
    .section h2,
    .section-title {
        margin-top: 0 !important;
        margin-bottom: 20px !important; /* Reduz espaço após título */
        padding-top: 0 !important;
    }
    
    /* Ajusta subtítulos */
    .section .lead,
    .section-subtitle {
        margin-bottom: 25px !important; /* Reduz espaço após subtítulo */
    }
    
    /* Cards e conteúdo das seções */
    .row {
        margin-top: 0 !important;
    }
    
    /* Para cards de benefícios */
    .benefit-card,
    .feature-card {
        margin-bottom: 20px !important; /* Reduz espaço entre cards */
    }
}

/* Para telas muito pequenas (menos de 576px) */
@media (max-width: 576px) {
    /* Reduz ainda mais os espaçamentos */
    .section,
    section {
        padding: 30px 0 !important;
    }
    
    .hero-section,
    .hero-section-unified,
    #inicio {
        padding-bottom: 20px !important;
    }
    
    .como-usar-section,
    .para-facilitar-section,
    .como-funciona,
    .steps-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    
    /* Títulos ainda menores */
    .section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 15px !important;
    }
    
    .section .lead {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
}

/* Correção específica para o gap visual grande */
@media (max-width: 768px) {
    /* Remove qualquer margin-top automático */
    section:not(:first-child) {
        margin-top: 0 !important;
    }
    
    /* Para seções com background diferente */
    .bg-light,
    .bg-white {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Se houver elementos com position relative causando espaço */
    .section > .container > .row:first-child {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Remove padding de elementos AOS (animação) */
    [data-aos] {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* Fix específico para transição entre hero e próxima seção */
@media (max-width: 768px) {
    /* Ajusta o final do hero */
    .hero-section .trust-indicators {
        margin-bottom: 0 !important;
        padding-bottom: 10px !important;
    }
    
    /* Primeira seção após o hero */
    .hero-section + section,
    #inicio + section {
        margin-top: -10px !important; /* Puxa um pouco para cima */
    }
}

/* Se estiver usando Bootstrap, override dos spacings */
@media (max-width: 768px) {
    .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .mt-3 { margin-top: 0.75rem !important; }
    .mt-4 { margin-top: 1rem !important; }
    .mt-5 { margin-top: 1.5rem !important; }
    .mb-3 { margin-bottom: 0.75rem !important; }
    .mb-4 { margin-bottom: 1rem !important; }
    .mb-5 { margin-bottom: 1.5rem !important; }
}

/* === Block 6 (lines 5324-5608) === */
/* Container dos Cards */
.process-container {
    position: relative;
}

/* Card Base */
.process-card-mini {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover simples e elegante */
.process-card-mini:hover {
    transform: translateY(-5px);
    border-color: var(--amarelo-global);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Número do Card */
.card-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 35px;
    height: 35px;
    background: var(--amarelo-global);
    color: var(--azul-global);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(255, 182, 0, 0.3);
}

/* Ícone do Card */
.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 182, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--amarelo-global);
    transition: all 0.3s ease;
}

/* IMPORTANTE: Manter ícone visível no hover */
.process-card-mini:hover .card-icon {
    background: var(--amarelo-global);
    color: white !important; /* Força a cor branca */
    transform: scale(1.1);
}

/* IMPORTANTE: Garantir que ícones Bootstrap permaneçam visíveis */
.process-card-mini:hover .card-icon i {
    color: white !important;
}

/* Textos do Card - SEMPRE VISÍVEIS */
.process-card-mini h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-global);
    margin-bottom: 0.5rem;
}

.process-card-mini p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* IMPORTANTE: Manter textos sempre visíveis no hover */
.process-card-mini:hover h6 {
    color: var(--azul-global) !important;
}

.process-card-mini:hover p {
    color: #666 !important;
}

/* ========== CARD HIGHLIGHT (ÚLTIMO) ========== */
.process-card-mini.highlight {
    background: linear-gradient(135deg, var(--azul-global) 0%, #0b193e 100%);
    border-color: var(--azul-global);
    transform: scale(1.02);
}

.process-card-mini.highlight h6,
.process-card-mini.highlight p {
    color: white !important;
}

.process-card-mini.highlight .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.process-card-mini.highlight .card-icon i {
    color: white !important;
}

.process-card-mini.highlight .card-number {
    background: var(--amarelo-global);
    color: var(--azul-global);
}

.process-card-mini.highlight:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(11, 25, 62, 0.3);
}

.process-card-mini.highlight:hover .card-icon {
    background: var(--amarelo-global);
    color: var(--azul-global) !important;
}

.process-card-mini.highlight:hover .card-icon i {
    color: var(--azul-global) !important;
}

/* ========== TOGGLE DE OPÇÕES ========== */
.option-toggle {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.option-btn {
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.option-btn.active {
    background: white;
    color: var(--azul-global);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.option-btn:hover:not(.active) {
    color: var(--azul-global);
}

/* ========== INFO BANNER ========== */
.info-banner {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.info-banner i {
    color: var(--amarelo-global);
    font-size: 1.2rem;
}

.info-banner p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ========== LOCATION CARD ========== */
.location-section {
    margin-top: 3rem;
}

.location-card-minimal {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 600px;
}

.location-card-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--amarelo-global);
}

.location-card-minimal .card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-card-minimal .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 182, 0, 0.1);
    color: var(--amarelo-global);
    font-size: 1.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-card-minimal:hover .card-icon {
    background: var(--amarelo-global);
    color: white !important;
}

.location-card-minimal:hover .card-icon i {
    color: white !important;
}

.location-card-minimal .card-text {
    flex: 1;
}

.location-card-minimal h3 {
    font-size: 1.2rem;
    color: var(--azul-global);
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.location-card-minimal p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.location-card-minimal .card-arrow {
    color: #999;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.location-card-minimal:hover .card-arrow {
    color: var(--amarelo-global);
    transform: translateX(5px);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .option-toggle {
        flex-direction: column;
        width: 100%;
    }
    
    .option-btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-card-mini {
        padding: 1.5rem;
    }
}

/* ========== MOBILE TABS ========== */


/* === Block 7 (lines 5999-6112) === */
/* Footer Compacto */
.footer {
    position: relative;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 15px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px; /* Altura mínima de apenas 40px */
}

/* Informações (esquerda) */
.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-info a {
    color: #64748b;
    text-decoration: none;
}

.footer-info a:hover {
    color: var(--amarelo-global);
}

/* Features (centro) */
.features-container-footer {
    display: flex;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.feature-item .icon {
    color: var(--amarelo-global);
    font-size: 1rem;
}

.feature-item .text {
    color: var(--azul-global);
    font-weight: 500;
}

/* Links sociais (direita) */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.social-links a {
    color: #64748b;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--amarelo-global);
}

.social-links i {
    font-size: 1.1rem;
}

.separator {
    color: #cbd5e1;
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 991px) {
    .footer {
        padding: 12px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-info {
        font-size: 0.75rem;
    }
    
    .features-container-footer {
        display: none; /* Esconde no mobile */
    }
    
    .social-links {
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* === Block 8 (lines 6804-6873) === */
/* Estilos customizados para o modal CORI */
.modal-dialog.modal-lg {
    max-width: 800px;
}

.search-box .form-control:focus {
    border-color: #ffb600;
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
}

.result-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ffb600;
}

.result-item.active {
    border-color: #ffb600;
    border-width: 2px;
    background-color: #fffbf0;
}

.badge {
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Scrollbar customizada */
.results-section::-webkit-scrollbar {
    width: 8px;
}

.results-section::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.results-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.results-section::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* === Block 9 (lines 7308-10278) === */
/* Grupo do WhatsApp */
.whatsapp-header-group {
    position: relative;
    margin: 0 1rem;
}

/* Botão Principal */
.btn-whatsapp-header {
    background: transparent;
    border: 1.5px solid var(--amarelo-global); /* Borda laranja igual aos outros */
    color: var(--azul-global); /* Texto azul */
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    height: 38px;
    cursor: pointer;
}

.btn-whatsapp-header:hover {
    background: var(--amarelo-global);
    color: var(--azul-global);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.3);
}

.btn-whatsapp-header i {
    font-size: 1rem;
    color: #25d366; /* Verde WhatsApp */
    transition: all 0.3s ease;
}

.btn-whatsapp-header:hover i {
    color: var(--azul-global); /* Fica azul no hover */
    /* OU se preferir que continue verde: */
    /* color: #128c7e; */ /* Verde mais escuro */
}

/* Indicador de Status */
.status-indicator-header {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
    background: #dc3545;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.status-indicator-header.online {
    background: #25d366; /* Verde WhatsApp */
    animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dropdown Menu */
.whatsapp-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 1001;
    overflow: hidden;
}

.whatsapp-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Dropdown Header */
.dropdown-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.status-text i {
    font-size: 8px;
    color: #dc3545;
}

.status-text.online {
    color: #28a745;
}

.status-text.online i {
    color: #28a745;
}

/* Divider */
.dropdown-divider {
    margin: 0;
    border-top: 1px solid #e9ecef;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 182, 0, 0.05);
    text-decoration: none;
    color: #333;
}

.dropdown-item i {
    font-size: 20px;
    color: #666;
    width: 30px;
    text-align: center;
    transition: color 0.2s ease;
}

.dropdown-item:hover i {
    color: var(--amarelo-global);
}

.dropdown-item div {
    flex: 1;
}

.dropdown-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: #333;
}

.dropdown-item small {
    color: #6c757d;
    font-size: 12px;
    display: block;
}

/* Dropdown Schedule */
.dropdown-schedule {
    padding: 10px 16px;
    background: #f8f9fa;
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    border-top: 1px solid #e9ecef;
}

.dropdown-schedule i {
    margin-right: 4px;
    font-size: 12px;
}

/* ========== RESPONSIVO ========== */

@media (max-width: 991px) {
    .whatsapp-header-group {
        margin: 1rem 0;
        width: 100%;
        order: 3; /* Aparece após o campo de busca */
    }
    
    .btn-whatsapp-header {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-dropdown {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .whatsapp-dropdown {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .dropdown-item {
        padding: 10px 12px;
    }
    
    .dropdown-item i {
        font-size: 18px;
        width: 25px;
    }
    
    .dropdown-item strong {
        font-size: 13px;
    }
    
    .dropdown-item small {
        font-size: 11px;
    }
}

/* ========== TEMA ESCURO (Opcional) ========== */

@media (prefers-color-scheme: dark) {
    .whatsapp-dropdown {
        background: #1a1a1a;
        border-color: #333;
    }
    
    .dropdown-header {
        background: #222;
        border-bottom-color: #333;
    }
    
    .dropdown-item {
        color: #e0e0e0;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 182, 0, 0.1);
    }
    
    .dropdown-item strong {
        color: #fff;
    }
    
    .dropdown-item small {
        color: #999;
    }
    
    .dropdown-schedule {
        background: #222;
        color: #999;
        border-top-color: #333;
    }
}
/* Solução forçada para mobile */
@media (max-width: 991px) {
    /* Remove as restrições de overflow */
    html {
        overflow-x: hidden !important; /* Apenas esconde overflow horizontal */
        overflow-y: visible !important; /* Permite rolagem vertical */
        height: auto !important; /* Remove altura fixa */
    }
    
    body {
        overflow-x: hidden !important; /* Apenas esconde overflow horizontal */
        overflow-y: auto !important; /* Permite rolagem vertical */
        -webkit-overflow-scrolling: touch; /* Suaviza a rolagem no iOS */
        height: auto !important; /* Remove altura fixa */
        min-height: 100vh; /* Garante altura mínima */
    }
    
    /* Garante que o container principal permita rolagem */
    .main-container {
        overflow: visible !important;
        height: auto !important;
    }
    
    /* Garante que nada ultrapasse o footer */
    .footer {
        position: relative;
        z-index: 9999;
        background: #ffffff;
        margin-bottom: -1px; /* Truque para eliminar gap */
    }
    
    /* Adiciona um pseudo-elemento branco após o footer */
    .footer::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: 0;
        right: 0;
        height: 100px;
        background: #ffffff;
    }
}

/* Adiciona correção extra para garantir rolagem em todos os dispositivos */
@media (max-width: 768px) {
    html, body {
        position: relative !important; /* Remove qualquer position fixed */
        width: 100% !important;
    }
    
    /* Força a página a ser rolável */
    body {
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important; /* Para Safari iOS */
    }
}

/* Correção específica para iOS */
@supports (-webkit-touch-callout: none) {
    body {
        /* Corrige problema de altura em iOS */
        min-height: -webkit-fill-available !important;
    }
}

/* Adicione este CSS específico para mobile dentro da tag <style> existente */
@media (max-width: 768px) {
    /* Reduz o espaço no hero content mobile */
    .hero-right-content {
        gap: 0.5rem !important; /* Reduz de 1.5rem para 0.5rem */
        margin-top: 0 !important; /* Remove margem negativa */
    }
    
    /* Ajusta o h3 */
    .hero-right-content h3 {
        margin-bottom: 0.25rem !important; /* Reduz ainda mais */
        font-size: 1.5rem !important; /* Reduz tamanho da fonte */
    }
    
    /* Remove espaço do h4 */
    .hero-right-content h4 {
        margin-bottom: 0 !important;
    }
    
    /* Ajusta o parágrafo */
    .hero-subtitle {
        margin-top: 0.25rem !important;
        margin-bottom: 1.5rem !important; /* Reduz de 3rem */
        font-size: 1rem !important; /* Ajusta tamanho */
    }
    
    /* Ajusta os botões */
    .hero-right-content .d-flex {
        margin-top: 1rem !important; /* Reduz margem superior */
    }
    
    /* Remove padding extra dos botões */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 25px !important;
        font-size: 0.95rem !important;
        min-width: 240px !important;
    }
}

/* Para telas muito pequenas */
@media (max-width: 576px) {
    .hero-right-content {
        gap: 0.3rem !important;
    }
    
    .hero-right-content h3 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        min-width: 100% !important;
        padding: 12px 20px !important;
    }
}

/* Correção do layout mobile para Seja CORI */
@media (max-width: 768px) {
    /* Ajusta o card CORI no mobile */
    .seja-cori .cori-card {
        background: rgba(255, 255, 255, 0.1); /* Mais transparente */
        border: 1px solid rgba(255, 182, 0, 0.3);
        padding: 1.5rem; /* Reduz padding */
        margin-top: 2rem;
    }
    
    /* Ajusta cores dos textos no card */
    .seja-cori .cori-card span {
        color: white !important;
    }
    
    /* Ajusta ícones */
    .seja-cori .feature-icon {
        background: rgba(255, 182, 0, 0.2);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .seja-cori .feature-icon i {
        color: var(--amarelo-global);
        font-size: 1.2rem;
    }
    
    /* Ajusta títulos */
    .seja-cori h6 {
        color: white !important;
        font-size: 1rem;
    }
    
    /* Ajusta parágrafos */
    .seja-cori p.small {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Ajusta botões no mobile */
    .seja-cori .btn-primary-custom {
        background: var(--amarelo-global);
        border: none;
        color: var(--azul-global);
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .seja-cori .btn-outline-custom {
        border: 2px solid white;
        color: white;
        background: transparent;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .seja-cori .btn-outline-custom:hover {
        background: white;
        color: var(--azul-global);
    }
    
    /* Ajusta espaçamento */
    .seja-cori .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
    
    /* Reduz tamanho do título principal */
    .seja-cori .display-4 {
        font-size: 2rem !important;
    }
    
    /* Ajusta texto do subtítulo */
    .seja-cori .fs-5 {
        font-size: 1rem !important;
    }
}

/* Para telas muito pequenas */
@media (max-width: 576px) {
    .seja-cori .cori-card {
        padding: 1rem;
    }
    
    /* Features em coluna única */
    .seja-cori .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .seja-cori .display-4 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    /* Ajusta o container de checklist */
    .seja-cori .cori-card .text-start {
        margin-bottom: 1.5rem !important;
    }
    
    .seja-cori .cori-card .d-flex {
        margin-bottom: 0.75rem !important;
    }
}/* Força visibilidade dos elementos no mobile */
@media (max-width: 991px) {
    .seja-cori {
        background: linear-gradient(135deg, #030813 0%, #0b193e 100%) !important;
        color: white !important;
        padding: 60px 0;
    }
    
    /* Garante que TODOS os textos sejam brancos */
    .seja-cori * {
        color: white;
    }
    
    /* Exceto os destaques em amarelo */
    .seja-cori .text-amarelo,
    .seja-cori .bi-check-circle {
        color: var(--amarelo-global) !important;
    }
    
    /* Remove opacity do texto para melhor legibilidade */
    .seja-cori .opacity-75 {
        opacity: 1 !important;
    }
    
    /* Ajusta container para mobile */
    .seja-cori .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}@media (max-width: 768px) {
    .seja-cori .cori-card {
        background: rgba(0, 0, 0, 0.3); /* Fundo mais escuro */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 182, 0, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}
    .map-compact-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin: 40px 0;
}

.map-info h4 {
    font-size: 1.5rem;
    color: var(--azul-global);
}

.map-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.map-preview-compact {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    background: #f0f0f0;
}

.map-image-compact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.map-icon-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.map-icon-float i {
    font-size: 2.5rem;
    color: var(--amarelo-global);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--amarelo-global);
    animation: pulse-map 2s ease-out infinite;
}

@keyframes pulse-map {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-compact-container {
        padding: 1.5rem;
    }
    
    .map-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .map-preview-compact {
        height: 150px;
    }
}
    /* Map Modern Container */
.map-modern-container {
    margin: 60px 0;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-preview-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 400px;
    background: #1a1a1a;
}

.map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 25, 62, 0.9) 0%, rgba(11, 25, 62, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    z-index: 2;
}

.map-icon-animated {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.map-icon-animated i {
    font-size: 4rem;
    color: var(--amarelo-global);
    filter: drop-shadow(0 4px 20px rgba(255, 182, 0, 0.5));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--amarelo-global);
    animation: pulse-map 2s ease-out infinite;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse-map {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Modal Styles */
.modal-map .modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.modal-map .modal-header {
    background: var(--azul-global);
    color: white;
    border: none;
    padding: 2rem;
}

.modal-map .modal-body {
    padding: 0;
}

.search-section {
    padding: 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--amarelo-global);
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.1);
}

.search-box button {
    padding: 12px 30px;
    background: var(--amarelo-global);
    border: none;
    border-radius: 12px;
    color: var(--azul-global);
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--amarelo-global-600);
    transform: translateY(-1px);
}

.results-section {
    display: flex;
    height: 500px;
}

.results-list {
    width: 40%;
    background: white;
    padding: 1.5rem;
    overflow-y: auto;
    border-right: 1px solid #e5e7eb;
}

.result-item {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--amarelo-global);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.result-item.active {
    border-color: var(--amarelo-global);
    background: rgba(255, 182, 0, 0.05);
}

.result-distance {
    display: inline-block;
    background: var(--amarelo-global);
    color: var(--azul-global);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.map-section {
    width: 60%;
    position: relative;
    background: #f0f0f0;
}

#modalMap {
    width: 100%;
    height: 100%;
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .map-preview-card {
        height: 300px;
    }
    
    .map-icon-animated i {
        font-size: 3rem;
    }
    
    .results-section {
        flex-direction: column;
        height: auto;
    }
    
    .results-list,
    .map-section {
        width: 100%;
    }
    
    .map-section {
        height: 300px;
    }
}
    /* Correção do layout mobile para Seja CORI */
@media (max-width: 768px) {
    /* Ajusta o card CORI no mobile */
    .seja-cori .cori-card {
        background: rgba(255, 255, 255, 0.1); /* Mais transparente */
        border: 1px solid rgba(255, 182, 0, 0.3);
        padding: 1.5rem; /* Reduz padding */
        margin-top: 2rem;
    }
    
    /* Ajusta cores dos textos no card */
    .seja-cori .cori-card span {
        color: white !important;
    }
    
    /* Ajusta ícones */
    .seja-cori .feature-icon {
        background: rgba(255, 182, 0, 0.2);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .seja-cori .feature-icon i {
        color: var(--amarelo-global);
        font-size: 1.2rem;
    }
    
    /* Ajusta títulos */
    .seja-cori h6 {
        color: white !important;
        font-size: 1rem;
    }
    
    /* Ajusta parágrafos */
    .seja-cori p.small {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Ajusta botões no mobile */
    .seja-cori .btn-primary-custom {
        background: var(--amarelo-global);
        border: none;
        color: var(--azul-global);
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .seja-cori .btn-outline-custom {
        border: 2px solid white;
        color: white;
        background: transparent;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .seja-cori .btn-outline-custom:hover {
        background: white;
        color: var(--azul-global);
    }
    
    /* Ajusta espaçamento */
    .seja-cori .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }
    
    /* Reduz tamanho do título principal */
    .seja-cori .display-4 {
        font-size: 2rem !important;
    }
    
    /* Ajusta texto do subtítulo */
    .seja-cori .fs-5 {
        font-size: 1rem !important;
    }
}

/* Para telas muito pequenas */
@media (max-width: 576px) {
    .seja-cori .cori-card {
        padding: 1rem;
    }
    
    /* Features em coluna única */
    .seja-cori .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .seja-cori .display-4 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    /* Ajusta o container de checklist */
    .seja-cori .cori-card .text-start {
        margin-bottom: 1.5rem !important;
    }
    
    .seja-cori .cori-card .d-flex {
        margin-bottom: 0.75rem !important;
    }
}
/* Força visibilidade dos elementos no mobile */
@media (max-width: 991px) {
    .seja-cori {
        background: linear-gradient(135deg, #030813 0%, #0b193e 100%) !important;
        color: white !important;
        padding: 60px 0;
    }
    
    /* Garante que TODOS os textos sejam brancos */
    .seja-cori * {
        color: white;
    }
    
    /* Exceto os destaques em amarelo */
    .seja-cori .text-amarelo,
    .seja-cori .bi-check-circle {
        color: var(--amarelo-global) !important;
    }
    
    /* Remove opacity do texto para melhor legibilidade */
    .seja-cori .opacity-75 {
        opacity: 1 !important;
    }
    
    /* Ajusta container para mobile */
    .seja-cori .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* Força exibição dos ícones Bootstrap */
.seja-cori .bi::before {
    display: inline-block !important;
    font-family: "bootstrap-icons" !important;
}

/* Garante que os ícones de check apareçam */
.seja-cori .bi-check-circle::before {
    content: "\f26b" !important;
    color: var(--amarelo-global) !important;
}
@media (max-width: 768px) {
    .seja-cori .cori-card {
        background: rgba(0, 0, 0, 0.3); /* Fundo mais escuro */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 182, 0, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* ========== CORREÇÃO MOBILE - SEJA CORI ========== */

/* Ajuste geral para mobile */
@media (max-width: 991px) {
    /* Adiciona espaçamento entre seções */
    .section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        margin-bottom: 0 !important;
    }
    
    /* Ajuste específico para a seção Seja CORI */
    .seja-cori,
    #seja-cori {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        margin-top: 40px !important;
        position: relative;
        z-index: 10;
        background: linear-gradient(135deg, var(--azul-global-600) 0%, var(--azul-global) 100%) !important;
    }
    
    /* Garante que a seção anterior termine corretamente */
    .seja-cori::before,
    #seja-cori::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 0;
        right: 0;
        height: 40px;
        background: white;
        z-index: -1;
    }
    
    /* Ajusta o card CORI no mobile */
    .cori-card {
        margin: 20px 0;
        padding: 2rem 1.5rem !important;
    }
    
    /* Ajusta botões no mobile */
    .seja-cori .btn,
    #seja-cori .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* Remove margin do último botão */
    .seja-cori .btn:last-child,
    #seja-cori .btn:last-child {
        margin-bottom: 0;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 576px) {
    .seja-cori,
    #seja-cori {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .cori-card {
        padding: 1.5rem 1rem !important;
    }
    
    /* Ajusta título no mobile */
    .seja-cori h2,
    #seja-cori h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ajusta subtítulo */
    .seja-cori p.lead,
    #seja-cori p.lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ========== CORREÇÃO ADICIONAL - SEPARAÇÃO CLARA ========== */
@media (max-width: 991px) {
    /* Adiciona uma divisão visual clara entre seções */
    .section + .section {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Remove a borda da seção Seja CORI já que tem fundo colorido */
    .seja-cori,
    #seja-cori {
        border-top: none !important;
    }
    
    /* Garante que o conteúdo não ultrapasse os limites */
    .section > .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }
}

/* ========== AJUSTE FINAL - ALTURA DAS SECTIONS ========== */
@media (max-width: 991px) {
    /* Remove altura fixa no mobile */
    .section {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        top: auto !important;
        left: auto !important;
    }
    
    /* Garante que todas as seções sejam visíveis no mobile */
    .section.active {
        position: relative !important;
    }
}
/* ========== CORREÇÃO MOBILE - HERO/INICIAL ========== */

/* Ajuste da primeira seção no mobile */
@media (max-width: 991px) {
    /* Ajusta a hero section (primeira seção) */
    .hero-section,
    #inicio,
    .section:first-child {
        padding-top: 100px !important; /* Adiciona espaço para o header */
        margin-top: 0 !important;
    }
    
    /* Se houver um navbar fixo, garante que não cubra o conteúdo */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: white !important;
    }
    
    /* Adiciona espaço para compensar o navbar fixo */
    body {
        padding-top: 0 !important; /* Remove padding do body se houver */
    }
    
    /* Ajusta o conteúdo da hero */
    .hero-content {
        padding-top: 20px;
    }
    
    /* Ajusta espaçamento dos botões */
    .hero-section .btn,
    #inicio .btn {
        margin-bottom: 10px !important;
    }
    
    /* Remove margem do último botão */
    .hero-section .btn:last-child,
    #inicio .btn:last-child {
        margin-bottom: 0 !important;
    }
}

/* Ajuste específico para telas menores */
@media (max-width: 576px) {
    /* Mais espaço no topo para telas muito pequenas */
    .hero-section,
    #inicio,
    .section:first-child {
        padding-top: 80px !important;
    }
    
    /* Ajusta o título principal */
    .hero-section h1,
    #inicio h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ajusta o subtítulo */
    .hero-section p,
    #inicio p {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important; /* Reduzido de 1.5rem para 0.75rem */
    }
    
    /* Remove espaço extra entre texto e botões */
    .hero-section .hero-subtitle,
    #inicio .hero-subtitle,
    .hero-section p:last-of-type,
    #inicio p:last-of-type {
        margin-bottom: 1rem !important; /* Espaço menor antes dos botões */
    }
}

/* ========== MANTÉM AS CORREÇÕES ANTERIORES DA SEJA CORI ========== */
@media (max-width: 991px) {
    /* Seções em geral (exceto a primeira) */
    .section:not(:first-child) {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Ajuste específico para a seção Seja CORI */
    .seja-cori,
    #seja-cori {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        margin-top: 40px !important;
        position: relative;
        z-index: 10;
        background: linear-gradient(135deg, var(--azul-global-600) 0%, var(--azul-global) 100%) !important;
    }
}

/* ========== AJUSTE DE ALTURA DAS SECTIONS ========== */
@media (max-width: 991px) {
    /* Remove altura fixa no mobile para todas as seções */
    .section {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        top: auto !important;
        left: auto !important;
    }
    
    /* Garante que todas as seções sejam visíveis */
    .section.active {
        position: relative !important;
        display: block !important;
    }
    
    /* Remove o sistema de navegação por seções no mobile */
    .main-container {
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
}
/* ========== CARDS EM GRID NO MOBILE ========== */

@media (max-width: 991px) {
    /* Container dos cards em grid */
    .casos-grid,
    .services-grid,
    .features-container,
    .row.g-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5px !important;
        padding: 0 10px;
    }
    
    /* Ajusta os cards individuais */
    .caso-card,
    .service-card,
    .feature-card,
    .col-md-4,
    .col-lg-4 {
        width: 100% !important;
        margin: 0 !important;
        padding: 15px !important;
    }
    
    /* Reduz o tamanho do conteúdo dos cards */
    .caso-card h6,
    .service-card h6,
    .feature-card h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .caso-card p,
    .service-card p,
    .feature-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Ajusta ícones */
    .caso-icon,
    .card-icon,
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Meta informações menores */
    .caso-meta {
        font-size: 0.7rem !important;
        gap: 5px !important;
    }
    
    .caso-meta span {
        font-size: 0.7rem !important;
    }
    
    .caso-meta i {
        font-size: 0.8rem !important;
    }
}

/* Para telas muito pequenas (menos de 400px) */
@media (max-width: 400px) {
    /* Mantém 2 colunas mas com menos espaçamento */
    .casos-grid,
    .services-grid,
    .features-container,
    .row.g-4 {
        gap: 10px !important;
        padding: 0 5px;
    }
    
    /* Cards ainda menores */
    .caso-card,
    .service-card,
    .feature-card {
        padding: 12px !important;
    }
    
    /* Textos ainda mais compactos */
    .caso-card h6,
    .service-card h6,
    .feature-card h6 {
        font-size: 0.85rem !important;
    }
    
    .caso-card p,
    .service-card p,
    .feature-card p {
        font-size: 0.7rem !important;
    }
}

/* ========== AJUSTE ESPECÍFICO PARA SEÇÃO "PARA FACILITAR SUA VIDA" ========== */
@media (max-width: 991px) {
    /* Se a seção tiver uma classe específica */
    #como-usar .row,
    .facilitar-section .row,
    .services-section .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* Remove classes do Bootstrap que podem interferir */
    #como-usar .col-md-4,
    #como-usar .col-lg-4,
    .facilitar-section .col-md-4,
    .services-section .col-md-4 {
        max-width: 100% !important;
        flex: none !important;
    }
}

/* ========== MANTÉM AS CORREÇÕES ANTERIORES ========== */
@media (max-width: 991px) {
    /* Hero section */
    .hero-section,
    #inicio,
    .section:first-child {
        padding-top: 100px !important;
        margin-top: 0 !important;
    }
    
    /* Seções em geral */
    .section:not(:first-child) {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Seja CORI */
    .seja-cori,
    #seja-cori {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        margin-top: 40px !important;
        background: linear-gradient(135deg, var(--azul-global-600) 0%, var(--azul-global) 100%) !important;
    }
}
/* ========== ESTILIZAÇÃO DO TÍTULO "PARA FACILITAR SUA VIDA" ========== */

/* Estilo geral do título */
.facilitar-title,
#como-usar h2,
.services-section h2,
h2:contains("Para facilitar sua vida") {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

/* Se o título estiver em um único elemento, use esta classe */
.styled-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.styled-title .small-text {
    font-size: 1.5rem !important;
    color: #333333 !important;
    font-weight: 400 !important;
    display: block !important;
}

.styled-title .big-text {
    font-size: 3rem !important;
    color: var(--amarelo-global, #ffb600) !important;
    font-weight: 700 !important;
    display: block !important;
}

/* Mobile */
@media (max-width: 768px) {
    .styled-title {
        font-size: 2rem !important;
    }
    
    .styled-title .small-text {
        font-size: 1.25rem !important;
    }
    
    .styled-title .big-text {
        font-size: 2.5rem !important;
    }
}

/* Subtítulo (frase abaixo) */
.subtitle-facilitar,
#como-usar p.lead,
.services-section p.lead {
    font-size: 1.1rem !important;
    color: #666666 !important;
    margin-bottom: 2rem !important;
}

@media (max-width: 768px) {
    .subtitle-facilitar,
    #como-usar p.lead,
    .services-section p.lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ========== AJUSTES SEÇÃO "ENVIE EM 4 PASSOS" ========== */

/* 1. BOTÕES DE SELEÇÃO DE PROCESSO - LARGURA TOTAL NO MOBILE */
@media (max-width: 991px) {
    .option-toggle {
        width: 100% !important;
        display: flex !important;
        padding: 4px !important;
        margin: 0 -15px !important; /* Negativo para compensar padding do container */
        background: #f0f0f0 !important;
        border-radius: 50px !important;
    }
    
    .option-btn {
        flex: 1 !important;
        width: 50% !important;
        margin: 0 !important;
        padding: 12px 20px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
    }
    
    .option-btn.active {
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Garante que o container use toda largura */
    .process-options .container,
    .process-options .row,
    .process-options .col-lg-10 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* 2. CARDS MENORES */
.process-card-mini {
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    .process-card-mini {
        padding: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .process-card-mini h6 {
    color: var(--azul-global);
    transition: all 0.3s ease;
}
    
    .process-card-mini p {
    color: #666;
    transition: all 0.3s ease;
}
    
    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }
}


/* 3. REMOVER OU ESTILIZAR MELHOR O CAMPO "SEM COMPLICAÇÃO" */
.info-banner {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    margin: 2rem 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.info-banner i {
    color: var(--amarelo-global) !important;
    font-size: 1.5rem !important;
}

.info-banner p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #666 !important;
}

@media (max-width: 768px) {
    .info-banner {
        padding: 0.75rem 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .info-banner p {
        font-size: 0.85rem !important;
    }
}

/* 4. CARD DE LOCALIZAÇÃO MELHORADO */
/* Desktop */
.location-card {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    max-width: 350px !important;
    margin: 0 auto !important;
}

.location-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px) !important;
}

.location-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--azul-global) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.location-card p {
    color: #666 !important;
    margin-bottom: 1.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

/* Mini mapa */
.mini-map {
    width: 120px !important;
    height: 120px !important;
    background: #f8f9fa !important;
    border-radius: 50% !important;
    margin: 0 auto 1.5rem !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #f0f0f0 !important;
}

.mini-map .map-pin {
    font-size: 2rem !important;
    color: var(--amarelo-global) !important;
    z-index: 1 !important;
}

/* Botão */
.btn-buscar-pontos {
    background: var(--amarelo-global) !important;
    color: var(--azul-global) !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
}

.btn-buscar-pontos:hover {
    background: #e6a200 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(255, 182, 0, 0.3) !important;
}

/* Container do mapa */
.map-compact-container {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Mobile */
@media (max-width: 991px) {
    .location-card {
        max-width: 280px !important;
        padding: 1.5rem !important;
        margin: 0 auto !important;
    }
    
    .location-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .location-card p {
        font-size: 0.8rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .mini-map {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.25rem !important;
    }
    
    .mini-map .map-pin {
        font-size: 1.75rem !important;
    }
    
    .btn-buscar-pontos {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .map-compact-container {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

/* Mobile muito pequeno */
@media (max-width: 400px) {
    .location-card {
        max-width: 260px !important;
        padding: 1.25rem !important;
    }
    
    .location-card h3 {
        font-size: 1rem !important;
    }
    
    .location-card p {
        font-size: 0.75rem !important;
    }
    
    .mini-map {
        width: 90px !important;
        height: 90px !important;
    }
    
    .mini-map .map-pin {
        font-size: 1.5rem !important;
    }
}

/* Remove padding extra do container no mobile */
@media (max-width: 991px) {
    .map-compact-container .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .map-compact-container .col-lg-12,
    .map-compact-container .col-lg-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* ========== CARD MINIMALISTA ========== */
.location-section {
    padding: 40px 0;
    margin: 20px 0;
}

.location-card-minimal {
    background: var(--azul-global, #0b193e);
    border: none;
    border-radius: 20px;
    padding: 28px 36px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 25, 62, 0.15);
}

.location-card-minimal::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.6s ease;
}

.location-card-minimal:hover::before {
    left: 100%;
}

.location-card-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 25, 62, 0.25);
    background: #132a69;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ícone */
.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 182, 0, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: var(--amarelo-global, #ffb600);
    transition: all 0.3s ease;
}

.location-card-minimal:hover .card-icon {
    background: var(--amarelo-global, #ffb600);
    transform: scale(1.1) rotate(5deg);
}

.location-card-minimal:hover .card-icon i {
    color: var(--azul-global, #0b193e);
}

/* Texto */
.card-text {
    flex: 1;
}

.card-text h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-text p {
    margin: 2px 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.location-card-minimal:hover .card-text h3 {
    color: var(--amarelo-global, #ffb600);
}

.location-card-minimal:hover .card-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* Seta */
.card-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-arrow i {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.location-card-minimal:hover .card-arrow {
    background: var(--amarelo-global, #ffb600);
    transform: translateX(5px) scale(1.1);
}

.location-card-minimal:hover .card-arrow i {
    color: var(--azul-global, #0b193e);
    transform: translateX(2px);
}

/* Mobile */
@media (max-width: 768px) {
    .location-section {
        padding: 30px 0;
        margin: 15px 0;
    }
    
    .location-card-minimal {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 0 15px;
    }
    
    .card-content {
        gap: 16px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
    
    .card-text h3 {
        font-size: 1.1rem;
    }
    
    .card-text p {
        font-size: 0.875rem;
    }
    
    .card-arrow {
        width: 36px;
        height: 36px;
    }
    
    .card-arrow i {
        font-size: 16px;
    }
}

/* Versão alternativa com gradiente (opcional) */
.location-card-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.location-card-gradient:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Animação de clique */
.location-card-minimal:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Indicador visual de clicável */
@media (hover: hover) {
    .location-card-minimal {
        cursor: pointer;
    }
}

/* Touch feedback para mobile */
@media (hover: none) {
    .location-card-minimal:active {
        background: #f8f9fa;
    }
}
/* ========== BOTÃO LOCALIZE CORI ========== */
.btn-localize-cori {
    background: var(--azul-global, #0b193e);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 25, 62, 0.2);
}

/* Efeito de luz */
.btn-localize-cori::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.6s ease;
}

.btn-localize-cori:hover::before {
    left: 100%;
}

/* Hover */
.btn-localize-cori:hover {
    background: #132a69;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 25, 62, 0.3);
    color: #ffffff;
}

/* Ícones */
.btn-localize-cori i:first-child {
    font-size: 1.1rem;
    color: var(--amarelo-global, #ffb600);
}

.btn-localize-cori i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-localize-cori:hover i:last-child {
    transform: translateX(5px);
}

/* Mobile */
@media (max-width: 768px) {
    .btn-localize-cori {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

/* Versão alternativa - Outline (caso queira variar) */
.btn-localize-cori-outline {
    background: transparent;
    color: var(--azul-global, #0b193e);
    border: 2px solid var(--azul-global, #0b193e);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-localize-cori-outline:hover {
    background: var(--azul-global, #0b193e);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 25, 62, 0.2);
}

.btn-localize-cori-outline i:first-child {
    color: var(--amarelo-global, #ffb600);
}

.btn-localize-cori-outline:hover i {
    color: var(--amarelo-global, #ffb600);
}

/* Versão com ícone circular (mais elaborada) */
.btn-localize-cori-icon {
    background: var(--azul-global, #0b193e);
    color: #ffffff;
    border: none;
    padding: 8px 28px 8px 8px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 25, 62, 0.2);
}

.btn-localize-cori-icon .icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 182, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-localize-cori-icon .icon-circle i {
    font-size: 1.1rem;
    color: var(--amarelo-global, #ffb600);
}

.btn-localize-cori-icon:hover {
    background: #132a69;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 25, 62, 0.3);
}

.btn-localize-cori-icon:hover .icon-circle {
    background: var(--amarelo-global, #ffb600);
    transform: scale(1.1);
}

.btn-localize-cori-icon:hover .icon-circle i {
    color: var(--azul-global, #0b193e);
}
/* Base para todos os tamanhos */
.option-toggle {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
    width: 100%;
}

.option-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.option-btn.active {
    background: white;
    color: var(--azul-global, #0b193e);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.option-btn:hover:not(.active) {
    opacity: 0.8;
}

.option-btn i {
    font-size: 1.1rem;
}

/* Desktop - mantém col-lg-10 */
@media (min-width: 992px) {
    /* Não precisa fazer nada, o Bootstrap cuida */
}

/* ========== CORREÇÃO MOBILE - BOTÕES LARGURA TOTAL ========== */
@media (max-width: 991px) {
    /* Container principal - remove margens do Bootstrap */
    .process-options .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    /* Row do Bootstrap - ajusta margens */
    .process-options .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Coluna - força largura total */
    .process-options .col-lg-10,
    .process-options .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Toggle container - usa toda largura */
    .option-toggle {
        width: 100% !important;
        display: flex !important;
        background: #f0f0f0 !important;
        border-radius: 50px !important;
        padding: 4px !important;
        gap: 4px !important;
        margin: 0 !important;
    }
    
    /* Botões - divide espaço igualmente */
    .option-btn {
        flex: 1 !important;
        white-space: nowrap !important;
        padding: 12px 15px !important;
        font-size: 0.875rem !important;
        min-width: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        color: #666 !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    
    /* Estado ativo */
    .option-btn.active {
        background: white !important;
        color: var(--azul-global, #0b193e) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Ícones */
    .option-btn i {
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }
}

/* Telas pequenas - ajustes finos */
@media (max-width: 480px) {
    .option-btn {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
        gap: 5px !important;
    }
    
    .option-btn i {
        font-size: 0.9rem !important;
    }
}

/* Telas muito pequenas - layout alternativo */
@media (max-width: 400px) {
    .option-btn {
        font-size: 0.8rem !important;
        padding: 10px 10px !important;
        gap: 5px !important;
    }
    
    .option-btn i {
        font-size: 0.9rem !important;
    }
    
    /* Se ainda quebrar, esconde o ícone em telas muito pequenas */
    @media (max-width: 350px) {
        .option-btn i {
            display: none !important;
        }
        
        .option-btn {
            font-size: 0.875rem !important;
        }
    }
}
/* ========== BOTÕES DE PROCESSO - SIMPLES E FUNCIONAL ========== */

/* Estilos base */
.option-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
    width: 100%;
}

.option-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.option-btn.active {
    background: white;
    color: var(--azul-global, #0b193e);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.option-btn i {
    font-size: 1.1rem;
}

/* Mobile - apenas ajustes necessários */
@media (max-width: 991px) {
    .option-toggle {
        /* Mantém visual mas ajusta tamanhos */
        padding: 3px;
        gap: 3px;
    }
    
    .option-btn {
        padding: 12px 15px;
        font-size: 0.875rem;
        gap: 6px;
    }
    
    .option-btn i {
        font-size: 1rem;
    }
}

/* Telas muito pequenas */
@media (max-width: 400px) {
    .option-btn {
        padding: 10px 10px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .option-btn i {
        font-size: 0.9rem;
    }
    
    /* Se ainda não couber, remove o texto "Direto" e "Simule" */
    .option-btn span {
        display: none;
    }
    
    .option-btn::after {
        content: attr(data-mobile);
    }
}
@media (max-width: 768px) {
    .option-toggle {
        display: none !important;
    }
}

/* Mostra botões mobile apenas no mobile */
.mobile-process-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-process-buttons {
        display: block !important;
        width: 100%;
        margin: 20px 0;
    }
    
    .mobile-btn {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        background: white;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .mobile-btn.active {
        background: var(--azul-global, #0b193e);
        color: white;
        border-color: var(--azul-global, #0b193e);
    }
    
    .mobile-btn:not(.active):hover {
        background: #f5f5f5;
    }
}
.mobile-process-select {
    display: none;
}

@media (max-width: 768px) {
    .option-toggle {
        display: none !important;
    }
    
    .mobile-process-select {
        display: block !important;
        width: 100%;
        margin: 20px 0;
    }
    
    .mobile-process-select select {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border: 2px solid var(--amarelo-global, #ffb600);
        border-radius: 10px;
        background: white;
        font-weight: 600;
        cursor: pointer;
    }
}
.mobile-tabs {
    display: none;
}

@media (max-width: 768px) {
    .option-toggle {
        display: none !important;
    }
    
    .mobile-tabs {
        display: flex !important;
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 20px;
    }
    
    .mobile-tab {
        flex: 1;
        padding: 12px;
        text-align: center;
        border: none;
        background: none;
        font-weight: 600;
        color: #666;
        border-bottom: 3px solid transparent;
        cursor: pointer;
    }
    
    .mobile-tab.active {
        color: var(--azul-global, #0b193e);
        border-bottom-color: var(--amarelo-global, #ffb600);
    }
}
/* ========== CARDS DE DEPOIMENTOS - MOBILE COMPACTO ========== */
@media (max-width: 768px) {
    /* Container dos depoimentos */
    #midia .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    /* Força uma coluna */
    #midia .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 15px !important;
    }
    
    /* Cards menores */
    .testimonial-card {
        padding: 20px !important;
        margin-bottom: 0 !important;
        min-height: auto !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Avatar menor */
    .testimonial-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        margin-right: 10px !important;
    }
    
    /* Nome e localização */
    .testimonial-card h6 {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }
    
    .testimonial-card small {
        font-size: 12px !important;
    }
    
    /* Texto do depoimento menor */
    .testimonial-card p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        margin-top: 12px !important;
    }
    
    /* Estrelas menores */
    .testimonial-card .text-warning {
        font-size: 14px !important;
    }
    
    .testimonial-card .bi-star-fill {
        font-size: 12px !important;
    }
}
/* CSS PARA REDESIGN MOBILE DA SEÇÃO SEJA CORI */
/* ========== SEJA CORI - REDESIGN MOBILE IMPACTANTE ========== */
@media (max-width: 768px) {
    /* Container principal */
    .seja-cori {
        background: linear-gradient(135deg, #030813 0%, #0b193e 100%) !important;
        padding: 40px 0 !important;
        overflow: hidden;
        position: relative;
    }
    
    /* Padrão de fundo animado */
    .seja-cori::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,182,0,0.1) 0%, transparent 70%);
        animation: pulse-bg 4s ease-in-out infinite;
    }
    
    @keyframes pulse-bg {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.3; }
    }
    
    /* Container com z-index para ficar acima do background */
    .seja-cori .container {
        position: relative;
        z-index: 2;
    }
    
    /* Título principal */
    .seja-cori h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        color: white !important;
        text-align: center;
    }
    
    .seja-cori h2 .text-amarelo {
        color: var(--amarelo-global) !important;
        display: block;
        font-size: 2.5rem;
        margin-top: 5px;
    }
    
    /* Subtítulo */
    .seja-cori .lead {
        font-size: 1rem !important;
        color: rgba(255,255,255,0.9) !important;
        text-align: center;
        margin-bottom: 30px !important;
    }
    
    /* Cards de benefícios em tabs/accordion */
    .mobile-benefits-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px 0;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .mobile-benefits-nav::-webkit-scrollbar {
        display: none;
    }
    
    .benefit-tab {
        flex: 0 0 auto;
        padding: 10px 20px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,182,0,0.3);
        border-radius: 25px;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
    }
    
    .benefit-tab.active {
        background: var(--amarelo-global);
        color: var(--azul-global);
        border-color: var(--amarelo-global);
        transform: scale(1.05);
    }
    
    /* Conteúdo dos benefícios */
    .benefit-content {
        display: none;
        animation: fadeIn 0.3s ease;
    }
    
    .benefit-content.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Card de benefício */
    .mobile-benefit-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,182,0,0.2);
        border-radius: 20px;
        padding: 25px;
        margin-bottom: 20px;
        backdrop-filter: blur(10px);
    }
    
    .mobile-benefit-card h4 {
        color: var(--amarelo-global);
        font-size: 1.3rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-benefit-card h4 i {
        font-size: 1.5rem;
    }
    
    /* Lista de requisitos em cards */
    .requirement-cards {
        display: grid;
        gap: 10px;
        margin-top: 25px;
    }
    
    .requirement-card {
        background: rgba(255,255,255,0.08);
        border-left: 3px solid var(--amarelo-global);
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s;
    }
    
    .requirement-card:active {
        transform: scale(0.98);
        background: rgba(255,255,255,0.12);
    }
    
    .requirement-icon {
        width: 35px;
        height: 35px;
        background: var(--amarelo-global);
        color: var(--azul-global);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: bold;
    }
    
    .requirement-text {
        color: white;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* CTA Section */
    .mobile-cta-section {
        margin-top: 30px;
        text-align: center;
        padding: 25px;
        background: rgba(255,182,0,0.1);
        border-radius: 20px;
        border: 1px solid rgba(255,182,0,0.3);
    }
    
    .mobile-cta-section h5 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .mobile-cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 15px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s;
    }
    
    .mobile-cta-section .btn-primary-custom {
        background: var(--amarelo-global);
        color: var(--azul-global);
        border: none;
        box-shadow: 0 4px 15px rgba(255,182,0,0.3);
    }
    
    .mobile-cta-section .btn-primary-custom:active {
        transform: scale(0.95);
    }
    
    .mobile-cta-section .btn-outline-custom {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    
    .mobile-cta-section .btn-outline-custom:active {
        background: rgba(255,255,255,0.1);
    }
    
    /* Indicador de scroll */
    .scroll-indicator {
        text-align: center;
        margin-top: 20px;
        color: rgba(255,255,255,0.6);
        font-size: 0.8rem;
    }
    
    .scroll-indicator i {
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }
}

/* Telas muito pequenas */
@media (max-width: 400px) {
    .seja-cori h2 {
        font-size: 1.8rem !important;
    }
    
    .seja-cori h2 .text-amarelo {
        font-size: 2rem !important;
    }
    
    .benefit-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .mobile-benefit-card {
        padding: 20px;
    }
    
    .requirement-card {
        padding: 12px;
    }
    
    .requirement-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}
/* ========== BOTÃO DE RASTREAMENTO VISÍVEL ========== */
.btn-track-header {
    background: transparent;
    border: 1.5px solid var(--amarelo-global);
    color: var(--azul-global);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 38px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-track-header:hover {
    background: var(--amarelo-global);
    color: var(--azul-global);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.3);
}

.btn-track-header i {
    font-size: 1rem;
}

/* ========== CORREÇÃO DO DROPDOWN WHATSAPP ========== */
.whatsapp-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: white !important; /* Força fundo branco */
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
    display: none;
    z-index: 1001;
    overflow: hidden;
}

/* Header do dropdown com fundo */
.whatsapp-dropdown-header {
    background: #f8f9fa !important; /* Fundo cinza claro */
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
}

/* Items do dropdown com hover */
.whatsapp-option {
    background: white;
    border: none;
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-option:hover {
    background: #f8f9fa; /* Fundo no hover */
}

/* Ícones coloridos */
.whatsapp-option i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.whatsapp-option .bi-headset {
    color: #0084ff; /* Azul para suporte */
}

.whatsapp-option .bi-shop {
    color: var(--amarelo-global); /* Amarelo para CORI */
}

/* Mobile responsivo */
@media (max-width: 768px) {
    /* Esconde o campo de rastreamento antigo no mobile */
    .tracking-group {
        display: none !important;
    }
    
    /* Ajusta botões no mobile */
    .btn-track-header,
    .btn-whatsapp-header {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Apenas ícones no mobile muito pequeno */
    @media (max-width: 400px) {
        .btn-track-header span,
        .btn-whatsapp-header span {
            display: none;
        }
        
        .btn-track-header,
        .btn-whatsapp-header {
            padding: 0.5rem;
            width: 38px;
            justify-content: center;
        }
    }
}
/* Adicione no CSS existente */
.section.rastreamento {
    min-height: auto; /* Remove altura fixa */
    padding-bottom: 4rem; /* Garante espaço inferior */
    overflow: visible; /* Permite que o conteúdo expanda */
}

/* Se houver alguma div com altura fixa, ajuste também */
.section.rastreamento .animate-on-scroll {
    overflow: visible;
}

/* Garante que o container de resultados seja visível */
#rastreamento-resultado {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

/* Loading Overlay */
.rastreamento-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.rastreamento-loading-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 2rem;
}

.rastreamento-loading-spinner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f3f4f6;
    border-radius: 50%;
}

.rastreamento-loading-spinner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--amarelo-global);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rastreamento-loading-text {
    color: var(--azul-global);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rastreamento-loading-subtext {
    color: #64748b;
    font-size: 0.9rem;
}

/* Pontos animados */
.loading-dots::after {
    content: '.';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}



/* === Block 10 (lines 10279-10294) === */
  body * {
    visibility: hidden !important;
  }

  #rastreamento, #rastreamento * {
    visibility: visible !important;
  }

  #rastreamento {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
  }

/* === Block 11 (lines 10528-10695) === */
        /* Marcadores coloridos */
.rastreamento-timeline-marker.warning {
    background: #ffc107;
    color: #000;
}

.rastreamento-timeline-marker.danger {
    background: #dc3545;
    color: #fff;
}

.rastreamento-timeline-marker.success {
    background: #198754;
    color: #fff;
}

/* Endereço destacado */
.rastreamento-timeline-address {
    background: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid #ffeaa7;
    margin: 10px 0;
}

/* Botões de ação */
.rastreamento-timeline-actions {
    margin-top: 10px;
}

.rastreamento-timeline-actions .btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

/* Detalhes */
.rastreamento-timeline-detail {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 8px;
}

/* Alertas na timeline */
.rastreamento-timeline-details .alert {
    font-size: 0.85rem;
}

/* Ícones nos marcadores */
.rastreamento-timeline-marker i {
    font-size: 0.8rem;
}

/* Status do card principal */
.rastreamento-status-icon.pickup {
    background: #ffc107;
    color: #000;
}

/* Marcadores da timeline */
.rastreamento-timeline-marker.warning {
    background: #ffc107;
    color: #000;
}

.rastreamento-timeline-marker.danger {
    background: #dc3545;
    color: #fff;
}

.rastreamento-timeline-marker.success {
    background: #198754;
    color: #fff;
}

/* Container do endereço */
.rastreamento-timeline-address-container {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
}

/* Endereço */
.rastreamento-timeline-address {
    background: #fff3cd;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    border-left: 4px solid #ffc107;
    color: #664d03;
    margin-bottom: 12px;
}

/* Ações */
.rastreamento-timeline-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rastreamento-timeline-actions .btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Alerta de data limite */
.rastreamento-timeline-alert {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    font-size: 0.9rem;
}

/* Informações adicionais */
.rastreamento-timeline-info {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Ícones */
.rastreamento-timeline-marker i {
    font-size: 0.9rem;
}

/* Melhorar responsividade */
@media (max-width: 576px) {
    .rastreamento-timeline-actions {
        flex-direction: column;
    }
    
    .rastreamento-timeline-actions .btn-sm {
        width: 100%;
    }
}
/* Status adicionais do card */
.rastreamento-status-icon.pending {
    background: #6c757d;
    color: #fff;
}

.rastreamento-status-icon.cancelled {
    background: #dc3545;
    color: #fff;
}

.rastreamento-status-icon.posted {
    background: #0dcaf0;
    color: #fff;
}

/* Marcador de timeline para etiqueta */
.rastreamento-timeline-marker i.bi-tag {
    font-size: 0.8rem;
}

.rastreamento-timeline-marker i.bi-mailbox {
    font-size: 0.8rem;
}
