/* Ágil Regularizações — Design System */
:root {
    --navy-900: #0A1628;
    --navy-800: #0F2341;
    --navy-700: #1A3A5C;
    --gold-500: #C9A84C;
    --gold-300: #E8D5A3;
    --gold-glow: rgba(201,168,76,.25);
    --white: #FFFFFF;
    --gray-50: #F7F9FC;
    --gray-100: #EEF2F7;
    --gray-400: #94A3B8;
    --success: #22C55E;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(10,22,40,.08);
    --shadow-lg: 0 20px 60px rgba(10,22,40,.15);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--navy-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.text-gold { color: var(--gold-500) !important; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), #B8943F);
    color: var(--navy-900) !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
    color: var(--navy-900) !important;
}
.btn-outline-gold {
    border: 1.5px solid var(--gold-500);
    color: var(--gold-500) !important;
    background: transparent;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold-glow);
    color: var(--gold-500) !important;
    border-color: var(--gold-500);
}
.btn-link-gold { color: var(--gold-500); text-decoration: none; font-weight: 600; font-size: .9rem; padding: 0; }
.btn-link-gold:hover { color: var(--navy-900); }
.btn-whatsapp-sm {
    width: 40px; height: 40px; border-radius: 50%;
    background: #25D366; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.btn-whatsapp-sm:hover { transform: scale(1.1); background: #1da851; }
.btn-whatsapp-xl {
    display: inline-flex; align-items: center; gap: 16px;
    background: #25D366; color: #fff !important;
    font-size: 1.25rem; font-weight: 700;
    padding: 20px 48px; border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 40px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
.btn-whatsapp-xl:hover { transform: scale(1.05); color: #fff !important; }
.btn-whatsapp-xl i { font-size: 2rem; }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 40px rgba(37,211,102,.4); }
    50% { box-shadow: 0 8px 60px rgba(37,211,102,.6); }
}

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
    background: rgba(10,22,40,.6);
    backdrop-filter: blur(12px);
}
.site-header.scrolled {
    background: rgba(10,22,40,.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.site-header .navbar { padding: 16px 0; }
.brand-logo { height: 48px; width: auto; }
.site-header .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500; font-size: .9rem;
    padding: 8px 16px !important;
    transition: var(--transition);
}
.site-header .nav-link:hover { color: var(--gold-500) !important; }
.navbar-toggler { border-color: var(--gold-500); }
.navbar-toggler-icon { filter: invert(1); }

/* Sections */
.section { padding: 100px 0; position: relative; }
.section-label {
    display: inline-block;
    font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold-500);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-lead { font-size: 1.1rem; color: var(--gray-400); line-height: 1.7; }

/* Hero */
.hero-section { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.75) 50%, rgba(15,35,65,.85) 100%);
}
.hero-mesh { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; pointer-events: none; }
.hero-svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(201,168,76,.3);
    backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 50px;
    font-size: .85rem; color: var(--gold-300);
    margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .875rem; }
.trust-item i { color: var(--gold-500); }
.hero-glass-card { perspective: 1000px; }
.glass-card-inner {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.25);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}
.glass-card-inner:hover { transform: rotateY(0) rotateX(0); }
.glass-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: var(--gold-glow);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold-500);
}
.glass-card-inner h3 { font-size: 1.25rem; margin-bottom: 12px; }
.glass-card-inner p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 24px; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a { color: var(--gold-500); font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Sobre */
.sobre-section { background: var(--gray-50); }
.sobre-image-wrap { position: relative; }
.sobre-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sobre-image-accent {
    position: absolute; top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1; opacity: .4;
}
.sobre-badge {
    position: absolute; bottom: 30px; right: -20px;
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px;
}
.glass-mini {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.sobre-badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold-500); line-height: 1; }
.sobre-badge-text { font-size: .75rem; color: var(--navy-700); line-height: 1.3; }
.sobre-content { color: var(--gray-400); }
.sobre-content strong { color: var(--navy-900); }

/* Services */
.servicos-section { background: var(--white); }
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-500);
}
.service-card-img {
    height: 180px; background-size: cover; background-position: center;
    position: relative;
}
.service-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.7), transparent);
}
.service-card-icon {
    position: absolute; bottom: 16px; left: 16px; z-index: 1;
    width: 48px; height: 48px;
    background: var(--gold-500);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-900); font-size: 1.2rem;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 1.1rem; margin-bottom: 8px; }
.service-card-text { font-size: .9rem; color: var(--gray-400); flex: 1; }
.service-card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }

/* Diferenciais */
.diferenciais-section { background: var(--navy-900); }
.diff-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}
.diff-card:hover {
    background: rgba(201,168,76,.08);
    border-color: var(--gold-500);
    transform: translateY(-4px);
}
.diff-icon {
    width: 56px; height: 56px;
    background: var(--gold-glow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold-500);
    margin-bottom: 20px;
}
.diff-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.diff-card p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; }

/* Timeline */
.como-section { background: var(--gray-50); }
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-item:not(:last-child)::before {
    content: ''; position: absolute;
    left: 27px; top: 60px; bottom: -32px;
    width: 2px; background: linear-gradient(to bottom, var(--gold-500), transparent);
}
.timeline-marker {
    width: 56px; height: 56px; flex-shrink: 0;
    background: var(--navy-900);
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--gold-500);
    position: relative;
}
.timeline-num { font-size: .65rem; font-weight: 700; line-height: 1; }
.timeline-marker i { font-size: .75rem; }
.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    flex: 1;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { color: var(--gray-400); font-size: .9rem; margin: 0; }

/* Stats */
.stats-section { background: var(--navy-800); padding: 80px 0; }
.stats-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,.1) 0%, transparent 70%);
}
.stat-box { padding: 20px; }
.stat-box-icon { font-size: 2rem; color: var(--gold-500); margin-bottom: 12px; }
.stat-box-value { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-suffix { color: var(--gold-500); font-size: 2rem; }
.stat-box-label { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 8px; }

/* Depoimentos */
.depoimentos-section { background: var(--white); }
.depoimento-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px; margin: 0 auto;
}
.depoimento-quote { font-size: 2rem; color: var(--gold-500); opacity: .4; margin-bottom: 16px; }
.depoimento-stars { color: var(--gold-500); margin-bottom: 16px; }
.depoimento-text { font-size: 1.05rem; font-style: italic; color: var(--navy-700); margin-bottom: 24px; line-height: 1.7; }
.depoimento-author { display: flex; align-items: center; gap: 16px; }
.depoimento-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-500); }
.depoimento-avatar-placeholder {
    background: var(--navy-900); color: var(--gold-500);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700;
}
.depoimento-author strong { display: block; color: var(--navy-900); }
.depoimento-author span { font-size: .85rem; color: var(--gray-400); }
.depoimentos-swiper .swiper-pagination-bullet-active { background: var(--gold-500); }

/* Blog cards */
.blog-section { background: var(--gray-50); }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { display: block; height: 180px; background-size: cover; background-position: center; position: relative; }
.blog-card-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold-500); color: var(--navy-900);
    font-size: .7rem; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: .75rem; color: var(--gray-400); }
.blog-card-body h3 { font-size: 1rem; margin: 8px 0; }
.blog-card-body h3 a { color: var(--navy-900); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--gold-500); }
.blog-card-body p { font-size: .85rem; color: var(--gray-400); margin: 0; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--gold-500); box-shadow: 0 4px 20px var(--gold-glow); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: none; border: none;
    font-family: var(--font-display); font-weight: 600; font-size: 1rem;
    color: var(--navy-900); cursor: pointer; text-align: left;
}
.faq-icon { color: var(--gold-500); transition: transform .3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; display: none; }
.faq-answer p { color: var(--gray-400); margin: 0; line-height: 1.7; }

/* CTA */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.cta-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, var(--gold-glow), transparent 50%);
}
.cta-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.7); margin-bottom: 40px; position: relative; }
.cta-phone { color: rgba(255,255,255,.6); position: relative; }
.cta-phone a { color: var(--gold-500); text-decoration: none; font-weight: 600; }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); position: relative; overflow: hidden; }
.footer-mesh {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.footer-logo { height: 60px; }
.footer-title { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-500); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .875rem; color: #fff; }
.footer-contact i { color: var(--gold-500); margin-top: 3px; width: 16px; flex-shrink: 0; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { color: var(--gold-500); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(201,168,76,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-500); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); }

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Modal */
.modal-glass { background: var(--navy-800); border: 1px solid rgba(201,168,76,.2); color: var(--white); }
.form-glass { background: rgba(255,255,255,.06) !important; border: 1px solid rgba(255,255,255,.1) !important; color: var(--white) !important; }
.form-glass:focus { border-color: var(--gold-500) !important; box-shadow: 0 0 0 3px var(--gold-glow) !important; }

/* Inner pages */
.page-hero {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 160px 0 80px;
    text-align: center; color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin: 16px auto 0; }
.page-content { padding: 80px 0; }

/* Responsive */
@media (max-width: 991px) {
    .section { padding: 60px 0; }
    .hero-section { min-height: auto; }
    .hero-section .row.min-vh-100 { min-height: auto !important; padding-top: 100px; padding-bottom: 60px; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; align-items: flex-start; }
    .sobre-badge { right: 10px; bottom: 10px; padding: 12px 16px; }
    .sobre-image-accent { display: none; }
    .timeline-item { flex-direction: column; }
    .timeline-item::before { display: none; }
    .cta-section { padding: 80px 0; }
    .page-hero { padding: 130px 0 60px; }
    .page-content { padding: 50px 0; }

    /* Navbar mobile */
    .site-header .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        border: 1px solid rgba(201, 168, 76, 0.2);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
    }
    .site-header .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-header .nav-item:last-child .nav-link { border-bottom: none; }
    .site-header .nav-item .btn-gold { width: 100%; margin-top: 8px; }
}

@media (max-width: 767px) {
    .brand-logo { height: 44px; max-width: 160px; object-fit: contain; }
    .stat-box-value { font-size: 2rem; }
    .stat-suffix { font-size: 1.25rem; }
    .hero-badge { font-size: .75rem; padding: 6px 14px; }
    .depoimento-card { padding: 24px 20px; }
    .faq-question { font-size: .9rem; padding: 16px 18px; }
    .faq-answer { padding: 0 18px 16px; }
    .btn-whatsapp-xl {
        font-size: 1rem;
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }
    .btn-whatsapp-xl i { font-size: 1.5rem; }
    .whatsapp-float {
        width: 52px; height: 52px;
        font-size: 1.5rem;
        bottom: 16px; right: 16px;
    }
    .footer-logo { height: 48px; }
    .service-card-img { height: 150px; }
    .blog-card-img { height: 160px; }
    .glass-card-inner { padding: 28px 20px; }
    .cta-title { font-size: 1.75rem; }
    .section-title { font-size: 1.65rem; }
}

@media (max-width: 575px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .hero-trust { gap: 8px; }
    .trust-item { font-size: .8rem; }
    .stat-box { padding: 12px 8px; }
    .stat-box-icon { font-size: 1.5rem; }
    .stat-box-value { font-size: 1.75rem; }
    .timeline-content { padding: 18px; }
    .diff-card { padding: 24px 20px; }
    .modal-glass .modal-body { padding: 16px; }
}

/* Prevent horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* SPA navigation */
#siteMain { transition: opacity .25s ease; }
#siteMain.spa-loading { opacity: .55; pointer-events: none; }
.nav-link.active { color: var(--gold-400, #C9A84C) !important; }
