* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0A2538;
    --medium-blue: #0F2B44;
    --premium-blue: #0A3452;
    --premium-blue-light: #134B6E;
    --gold: #D4AF37;
    --gold-light: #e4c96e;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #eef2f5;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F2A3E;
    line-height: 1.5;
    background-color: var(--white);
    scroll-behavior: smooth;
    padding-top: 0;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Fixo com efeito espelhado */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, #0A2A44 0%, #071F33 50%, #051828 100%);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.9rem 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
}
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.nav-menu li a:hover {
    color: var(--gold);
}
.btn-cliente {
    background: linear-gradient(135deg, var(--gold), #c5a12b);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-cliente i {
    margin-right: 6px;
}
.btn-cliente:hover {
    background: linear-gradient(135deg, #e4c96e, var(--gold));
    transform: translateY(-2px);
}
.mobile-menu-icon {
    display: none;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
}

/* SLIDER */
.hero-slider {
    margin-top: 0;
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,37,56,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 2rem;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8%;
    animation: fadeUp 0.9s ease;
}
.slide-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.gold, .gold-texture .gold {
    color: var(--gold);
}
.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.btn-gold {
    display: inline-block;
    background: linear-gradient(145deg, #D4AF37 0%, #B8962E 100%);
    color: var(--dark-blue);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-gold:hover {
    background: linear-gradient(145deg, #F0D676 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    z-index: 20;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}
.prev { left: 20px; }
.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}
/* Slide Parallax */
.parallax-slide {
    overflow: hidden;
}
.parallax-bg {
    transform: scale(1.08);
    transition: transform 0.2s linear;
}
.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(10,37,56,0.4);
    z-index: 1;
}

/* Seções Gerais */
.section-padding {
    padding: 80px 0;
}
.bg-dark {
    background: linear-gradient(145deg, #0A2A44 0%, #061A2A 100%);
    color: var(--white);
    position: relative;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bg-light-blue {
    background-color: #EFF3F8;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 5px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.divider {
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
}
.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.mv-card {
    background: var(--white);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.values-card {
    background: var(--premium-blue);
    color: white;
    padding: 32px;
    border-radius: 32px;
}
.values-list {
    list-style: none;
    margin-top: 20px;
}
.values-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.values-list i {
    color: var(--gold);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.area-card {
    background: rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 28px;
    transition: transform 0.2s;
    text-align: center;
}
.area-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.area-card:hover {
    transform: translateY(-8px);
    background: rgba(212,175,55,0.1);
}
.diferenciais-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.diff-item {
    background: var(--off-white);
    padding: 12px 28px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.diff-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* AJUSTE: Padronização das logos de parceiros e clientes */
.parceiros-grid, .clientes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.parceiro-item, .cliente-card {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-item img, .cliente-card img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.parceiro-item:hover, .cliente-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.parceiro-item:hover img, .cliente-card:hover img {
    transform: scale(1.05);
}

/* CTA Section premium */
.cta-section {
    background: linear-gradient(145deg, #0A2A44 0%, #051828 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.btn-large {
    padding: 14px 42px;
    font-size: 1.1rem;
    margin-top: 20px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}
.contact-detail i {
    font-size: 1.8rem;
    color: var(--gold);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
}

/* ============================================
   FOOTER CORRIGIDO - SEM TOM ROXO
   ============================================ */

.main-footer {
    background: #0A1A2A;
    color: #E8ECF2;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Links do footer */
.main-footer a {
    color: #E8ECF2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: var(--gold);
}

/* Títulos do footer */
.main-footer h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Listas do footer */
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

/* Ícones de contato no footer */
.main-footer .footer-col i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

/* Logo do footer */
.main-footer .footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1);
}

/* Texto descritivo */
.main-footer .footer-col p {
    color: #C8D0DC;
    line-height: 1.6;
}

/* Redes sociais - Ícones BRANCOS */
.main-footer .footer-social {
    margin-top: 20px;
}

.main-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.main-footer .footer-social a i {
    color: #FFFFFF !important;
    font-size: 1.1rem;
    margin: 0;
}

.main-footer .footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.main-footer .footer-social a:hover i {
    color: #0A1A2A !important;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: #9AA9B9;
}

/* Responsividade para logos e footer */
@media (max-width: 768px) {
    .parceiro-item img, .cliente-card img {
        max-width: 100px;
        max-height: 60px;
    }
    
    .parceiro-item, .cliente-card {
        padding: 15px 20px;
    }
    
    .parceiros-grid, .clientes-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .parceiro-item img, .cliente-card img {
        max-width: 80px;
        max-height: 50px;
    }
    
    .parceiro-item, .cliente-card {
        padding: 12px 15px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        background: var(--premium-blue);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        transition: 0.3s;
        padding: 30px;
    }
    .main-nav.active {
        left: 0;
    }
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    .mobile-menu-icon {
        display: block;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .slide-title {
        font-size: 2.2rem;
    }
    
    .main-footer .footer-logo {
        width: 60px;
    }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(-50%);}
}