/* ==========================================================================
   CSS Variáveis e Reset Base
   ========================================================================== */
@import url('../fonts/fonts.css');

:root {
    /* Cores do PDF */
    --navy: #0a1128;
    --navy-light: #162447;
    --gold: #e8cd8f;
    --gold-hover: #d2b46d;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Fontes */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Sombras e Bordas */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Typography & Global */
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Acessibilidade (A11y)
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.vertical-line {
    width: 4px;
    height: 40px;
    background-color: var(--gold);
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   Layout Grids
   ========================================================================== */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.items-center {
    align-items: center;
}

.gap-lg {
    gap: 80px;
}

/* ==========================================================================
   Header & Navegação
   ========================================================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    
    display: block;
    
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
 height: 140px; }

.logo {
    height: 120px;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--gold);
}

.btn-login {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    transition: 0.3s;
}

/* ==========================================================================
   Seções Gerais
   ========================================================================== */
.section {
    padding: var(--section-padding);
}

.section-white {
    background-color: var(--white);
}

.section-light {
    background-color: var(--off-white);
}

.shadow-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 93vh;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 180px; /* offset header */
    background-image: linear-gradient(rgba(10, 17, 40, 0.85), rgba(10, 17, 40, 0.85)), url('../img/heroindex.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    position: relative;
}

.hero .hero-title {
    color: var(--white);
}

.hero .hero-desc {
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.hero .btn-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.hero .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.hero .btn-outline:hover {
    background-color: var(--white);
    color: var(--navy);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   Imagens e Elementos Visuais
   ========================================================================== */
.responsive-img {
    width: 100%;
    display: block;
}

.circle-img-wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
}

.circle-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-gold {
    color: var(--gold);
    margin-bottom: 20px;
}

/* ==========================================================================
   Textos e Listas Específicas
   ========================================================================== */
.content-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.name-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.gold-subtitle {
    color: var(--gold) !important;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.feature-list li {
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-list strong {
    color: var(--navy);
}

/* ==========================================================================
   Cards e Elementos Decorativos
   ========================================================================== */
.border-bottom-gold {
    border-bottom: 4px solid var(--gold);
}

.card {
    padding: 40px 30px;
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.bg-light {
    background-color: var(--off-white);
}

.step-number {
    font-size: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.experience-block {
    text-align: center;
}

.big-number {
    font-size: 6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.small-text {
    font-size: 1.2rem;
    color: var(--navy);
}

.star-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.star-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

/* ==========================================================================
   Quote Section
   ========================================================================== */
.quote-section {
    background-color: var(--white);
    padding: 100px 0;
}

.quote-mark {
    font-size: 5rem;
    line-height: 0;
    font-family: var(--font-serif);
    display: block;
    margin-bottom: 30px;
}

.quote-text {
    font-size: 2.5rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

.quote-author {
    font-weight: 600;
    color: var(--text-light);
}

/* ==========================================================================
   Modern Quote Section
   ========================================================================== */
.quote-section-modern {
    background-color: var(--off-white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.quote-card {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1128 100%);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.15);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.quote-icon-bg {
    position: absolute;
    top: -30px;
    left: 20px;
    color: rgba(212, 175, 55, 0.08);
    transform: rotate(-10deg);
    z-index: 0;
}

.quote-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text-modern {
    font-size: 2.4rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 400;
}

.quote-author-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.author-line {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.quote-author-modern p {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-author-modern p span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .quote-card {
        padding: 40px 20px;
    }
    .quote-text-modern {
        font-size: 1.6rem;
    }
    .quote-icon-bg {
        width: 100px;
        height: 100px;
        top: -10px;
        left: -10px;
    }
}

/* ==========================================================================
   Creative Section (Sobre)
   ========================================================================== */
.creative-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 20px 0 0;
}

.img-frame-gold {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    border: 3px solid var(--gold);
    border-radius: var(--border-radius);
    z-index: -1;
    transform: translate(20px, -20px);
}

.creative-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.15);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--navy);
    color: var(--white);
    padding: 25px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 4px solid var(--off-white);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
}

.highlight-subtitle {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 500;
}

.modern-paragraph {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
}

.feature-small .icon-gold {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* ==========================================================================
   Service Cards e Images
   ========================================================================== */
.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-white .service-card {
    background-color: var(--off-white);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-icon {
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.service-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.img-frame-navy {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-color: var(--navy);
    border-radius: var(--border-radius);
    z-index: -1;
}

.img-frame-navy.left-frame {
    right: auto;
    left: 0;
}

/* Utils */
.mt-3 { margin-top: 30px; }
.pl-2 { padding-left: 20px; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border-left: 3px solid var(--gold);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Rodapé & CTA
   ========================================================================== */
.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact a:hover {
    color: var(--gold) !important;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 30px 20px !important;
    }
}

/* ==========================================================================
   Contato & Footer
   ========================================================================== */
.contact-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-form-wrapper {
    background-color: var(--navy);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--white);
}

.form-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-bottom-color: var(--gold);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form .btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.footer {
    background-color: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   Responsividade (Mobile)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .circle-img {
        width: 250px;
        height: 250px;
    }

    .big-number {
        font-size: 4rem;
        flex-direction: column;
        gap: 5px;
    }

    /* Menu Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 140px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 140px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
        padding: 20px;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Cookie Banner (LGPD)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--navy);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-banner {
        bottom: 30px;
    }
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.whatsapp-container:hover .whatsapp-menu,
.whatsapp-container.active .whatsapp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-item {
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    color: var(--navy);
    border-left: 4px solid #25d366;
    transition: all 0.2s;
    min-width: 200px;
}

.wa-item:hover {
    transform: translateX(-5px);
    background-color: var(--off-white);
}

.wa-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #25d366;
}

.wa-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.wa-text {
    display: flex;
    flex-direction: column;
}

.wa-text strong {
    font-size: 1rem;
    line-height: 1.2;
}

.wa-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   Footer Clean (3 Colunas)
   ========================================================================== */
.site-footer {
    background-color: var(--navy);
    color: #FFF;
    padding: 70px 0 20px 0;
    font-family: var(--font-sans);
    border-top: 2px solid var(--gold);
}

.footer-grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Coluna 1 */
.footer-logo-clean {
    width: 220px;
    height: auto;
    background-color: #FFF;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-clean {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social-clean a {
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-clean a:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--gold);
}

/* Coluna 2 */
.footer-title {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-links-wrap {
    display: flex;
    gap: 40px;
}

.footer-links-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-wrap a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-wrap a:hover {
    color: var(--gold);
}

/* Coluna 3 */
.footer-col-contact p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.85rem;
}

.contact-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-clean-list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    align-items: flex-start;
}

.contact-clean-list .icon {
    font-style: normal;
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
    margin-top: 2px;
}

/* Copyright */
.footer-copyright-clean {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright-clean p {
    margin: 0;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .footer-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .footer-copyright-clean {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */
.exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exit-overlay.show {
    opacity: 1;
}

.exit-modal {
    background-color: #FFF;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.exit-overlay.show .exit-modal {
    transform: translateY(0);
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.exit-close:hover {
    color: var(--navy);
}

.exit-modal-left {
    background-color: var(--navy);
    width: 40%;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.exit-left-content {
    padding: 40px 30px 0;
}

.exit-left-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 15px;
    color: #FFF;
}

.exit-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.9;
}

.exit-expert-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
    border-bottom: 5px solid var(--gold);
}

.exit-left-bottom {
    background-color: #FFF;
    color: var(--navy);
    padding: 20px 30px;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 0 40px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.exit-modal-right {
    width: 60%;
    padding: 40px 40px 30px 40px;
    background-color: #FAFAFA;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exit-form-row {
    display: flex;
    gap: 15px;
}

.exit-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exit-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.exit-form-group input,
.exit-form-group select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background-color: #FFF;
}

.exit-form-group input:focus,
.exit-form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

.exit-btn-submit {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.exit-btn-submit:hover {
    background-color: #e5b922;
    transform: translateY(-2px);
}

.exit-consent {
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.exit-consent a {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .exit-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .exit-modal-left, .exit-modal-right {
        width: 100%;
    }
    .exit-form-row {
        flex-direction: column;
        gap: 15px;
    }
    .exit-expert-img {
        display: none;
    }
    .exit-left-bottom {
        margin-top: 0;
        border-radius: 0;
    }
}

/* ==========================================================================
   Página de Contato (3 Colunas)
   ========================================================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-block {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon-large {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.contact-page-form-wrapper {
    background: #FFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-page-map {
    height: 100%;
    min-height: 400px;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   Carousel de Logos
   ========================================================================== */
.logo-slider {
    background: var(--white);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-slider::before, .logo-slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.logo-slider::before {
    left: 0;
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slide-track {
    display: flex;
    width: calc(300px * 18); /* 9 logos * 2 (duplicados) = 18 slides de 300px */
    animation: scroll 45s linear infinite;
    align-items: center;
}

.logo-slide-track:hover {
    animation-play-state: paused;
}

.logo-slide-track .slide {
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide-track .slide img {
    width: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.logo-slide-track .slide img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 9)); /* Move a largura exata das 9 logos originais */
    }
}



/* ==========================================================================
   Active Menu Link
   ========================================================================== */
.nav-list a.active {
    background-color: var(--navy);
    color: var(--gold) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}
 .page-hero { min-height: 40vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 180px; background-size: cover; background-position: center; background-attachment: fixed; position: relative; border-bottom: 2px solid var(--gold); }  .page-hero .hero-title { color: var(--white) !important; } .page-hero .hero-desc { color: rgba(255, 255, 255, 0.9) !important; }  /* ==========================================================================    Top Bar    ========================================================================== */ .top-bar {     background-color: var(--navy);     color: rgba(255, 255, 255, 0.9);     font-size: 0.8rem;     padding: 8px 0;     border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .top-bar-container {     display: flex;     justify-content: space-between;     align-items: center; } .top-bar a {     color: rgba(255, 255, 255, 0.9);     text-decoration: none;     transition: color 0.3s;     display: inline-flex;     align-items: center;     gap: 5px; } .top-bar a:hover {     color: var(--gold); } .top-bar span {     display: inline-flex;     align-items: center;     gap: 5px; } .top-bar .divider {     margin: 0 10px;     opacity: 0.3; } .header {     /* Ajustar se o header for fixed para comportar o topbar sem sobrepor */     display: flex;     flex-direction: column; } @media (max-width: 768px) {     .top-bar-container {         flex-direction: column;         gap: 5px;         text-align: center;     }     .top-bar .divider {         display: none;     }     .top-bar-left {         display: flex;         flex-direction: column;         gap: 5px;     } } 
/* Modern Profile Frame */
.modern-profile-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    max-width: 450px;
    margin: 0 auto;
}
.modern-profile-frame-gold {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border: 4px solid var(--gold);
    border-radius: 40px 0 40px 0;
    z-index: -1;
    transition: transform 0.4s ease;
}
.modern-profile-frame-navy {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    background-color: var(--navy);
    border-radius: 0 40px 0 40px;
    z-index: -1;
    transition: transform 0.4s ease;
}
.modern-profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 0 40px 0 40px;
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.15);
    z-index: 1;
    position: relative;
}
.modern-profile-wrapper.alt .modern-profile-img {
    border-radius: 40px 0 40px 0;
}
.modern-profile-wrapper:hover .modern-profile-frame-gold {
    transform: translate(-10px, 10px);
}
.modern-profile-wrapper:hover .modern-profile-frame-navy {
    transform: translate(10px, 10px);
}


/* --- Back to Top --- */
#back-to-top {
    position: fixed;
    bottom: 110px;
    right: 37px; /* alinhado com o whatsapp */
    background-color: var(--gold);
    color: var(--navy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
    border: none;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    #back-to-top {
        bottom: 85px;
        right: 25px;
        width: 40px;
        height: 40px;
    }
}

/* --- Footer 4 Columns Layout --- */
.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.modern-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modern-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}
.modern-contact-list .icon-circle {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}
.modern-contact-list li:hover .icon-circle {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.contact-text {
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 3px;
}
.contact-value {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.contact-value:hover {
    color: var(--gold);
}

.chevron-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chevron-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.chevron-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.chevron-list a:hover {
    color: var(--gold);
}
.chevron-list svg {
    color: #fff;
}

/* --- Premium CTA --- */
.cta-premium {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: var(--navy);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}
.cta-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}
.cta-premium .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-premium h2, .cta-premium p.cta-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--navy);
    margin-top: 0;
    line-height: 1.1;
}
.cta-premium p.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(0, 15, 45, 0.85); /* Dark navy soft */
    font-weight: 500;
}
.cta-premium .btn-premium {
    background-color: var(--navy);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cta-premium .btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    background-color: #000;
}
@media (max-width: 768px) {
    .cta-premium h2, .cta-premium p.cta-title { font-size: 2.2rem; }
    .cta-premium { padding: 70px 20px; }
}

/* --- Boxed Premium CTA --- */
.cta-section-wrapper {
    background-color: var(--white); /* Fundo branco da página normal */
    padding: 60px 20px 80px;
}
.cta-premium-box {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.cta-premium-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}
.cta-premium-box h2, .cta-premium-box p.cta-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--navy);
    margin-top: 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}
.cta-premium-box p.cta-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(0, 15, 45, 0.85);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.cta-premium-box .btn-premium {
    background-color: var(--navy);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.cta-premium-box .btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background-color: #000;
}
@media (max-width: 768px) {
    .cta-premium-box {
        padding: 40px 20px;
        border-radius: 16px;
    }
    .cta-premium-box h2, .cta-premium-box p.cta-title { font-size: 2rem; }

    /* Ajuste para o hero no mobile para não sobrepor com o cabeçalho alto */
    .hero {
        padding-top: 260px;
        background-size: cover;
        background-attachment: scroll; /* Fix for mobile parallax issues */
    }
    .page-hero {
        padding-top: 240px;
    }
}
