:root {
    --navy:   #0A1E35;
    --blue:   #0D3B6E;
    --steel:  #1A5FA8;
    --sky:    #4A9FE0;
    --accent: #FF6B35;
    --light:  #F2F6FB;
    --text:   #1C2B3A;
    --muted:  #637387;
    --white:  #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: -0.01em;
}

/* ── NAV ── */
.navbar {
    background: transparent;
    transition: background .4s, box-shadow .4s;
    padding: 1rem 0;
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(10,30,53,.96);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
    padding: .6rem 0;
    backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
    background: rgba(10,30,53,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(74,159,224,.15);
    border-radius: 0 0 14px 14px;
    padding: 1rem 1.2rem 1.4rem;
    margin-top: .5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    }
    .navbar-collapse .nav-link {
    padding: .65rem .5rem !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .navbar-collapse .nav-item:last-child .nav-link {
    border-bottom: none;
    }
    .navbar-collapse .btn-nav {
    margin-top: .8rem;
    display: block;
    text-align: center;
    border-radius: 8px;
    padding: .7rem 1.2rem !important;
    }
}
.navbar-brand span { color: var(--sky); }
.nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-link:hover { color: var(--sky) !important; }
.btn-nav {
    background: var(--accent);
    color: #fff !important;
    border-radius: 4px;
    padding: .45rem 1.2rem !important;
    font-weight: 600;
    transition: background .2s, transform .2s;
}
.btn-nav:hover { background: #e55a25; transform: translateY(-1px); }

.terms-page {
    border-top: solid 100px var(--blue);
    padding: 40px 0;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #0f3460 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M0 40h80M40 0v80' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.hero-diagonal {
    position: absolute;
    right: -5%;
    top: 0; bottom: 0;
    width: 55%;
    background: linear-gradient(180deg, rgba(74,159,224,.08) 0%, rgba(26,95,168,.15) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Steel frame SVG illustration */
.frame-illustration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    opacity: .18;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(74,159,224,.15);
    border: 1px solid rgba(74,159,224,.3);
    color: var(--sky);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--sky); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
}
.hero h1 em { color: var(--sky); font-style: normal; }
.hero h1 .accent-line { color: var(--accent); }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    line-height: 1.6;
    margin-top: 1.2rem;
}

.btn-cta-primary {
    background: var(--accent);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    border: none;
    transition: all .25s;
    box-shadow: 0 8px 28px rgba(255,107,53,.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn-cta-primary:hover {
    background: #e55a25;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,107,53,.45);
    color: #fff;
}

.btn-cta-secondary {
    background: transparent;
    color: rgba(255,255,255,.85);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .95rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.25);
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.hero-note { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: .6rem; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sky);
    line-height: 1;
}
.stat-label { color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.3; margin-top: .2rem; }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--light);
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 1.6rem 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 500;
    font-size: .92rem;
    color: var(--blue);
}
.trust-item i { color: var(--steel); font-size: 1.3rem; }
.trust-divider { width: 1px; height: 36px; background: rgba(0,0,0,.12); }

/* ── SECTION TITLES ── */
.sec-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: .5rem;
}
.sec-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--navy);
}
.sec-title span { color: var(--steel); }

/* ── ABOUT ── */
.about-section { padding: 7rem 0; }
.about-img-wrap {
    position: relative;
}
.about-img-bg {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-radius: 12px;
    width: 100%;
    padding-bottom: 120%;
    position: relative;
    overflow: hidden;
}
.about-img-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(0,0,0,.4));
}
.about-ceo-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    box-shadow: 0 12px 32px rgba(255,107,53,.35);
}
.about-ceo-tag strong { font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.about-ceo-tag span { font-size: .82rem; font-weight: 600; letter-spacing: .04em; opacity: .9; }

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.about-feature-icon {
    width: 44px; height: 44px;
    background: rgba(26,95,168,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--steel);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.about-feature h6 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .15rem; }
.about-feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── VANTAGENS ── */
.vantagens { padding: 7rem 0; background: var(--navy); }
.vantagens .sec-eyebrow { color: var(--sky); }
.vantagens .sec-title { color: #fff; }
.vantagens .sec-title span { color: var(--sky); }

.card-vantagem {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 2rem 1.6rem;
    transition: all .3s;
    height: 100%;
}
.card-vantagem:hover {
    background: rgba(74,159,224,.1);
    border-color: rgba(74,159,224,.3);
    transform: translateY(-6px);
}
.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.card-vantagem h5 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: .5rem;
}
.card-vantagem p { font-size: .9rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

/* ── SERVIÇOS ── */
.servicos { padding: 7rem 0; background: var(--light); }
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    transition: all .3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(13,59,110,.12);
    border-bottom-color: var(--steel);
    transform: translateY(-6px);
}
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--steel), var(--sky));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}
.service-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── PROCESSO ── */
.processo { padding: 7rem 0; }
.step-wrap { position: relative; }
.step-line {
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: linear-gradient(90deg, var(--steel), var(--sky));
    opacity: .3;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-num {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--blue), var(--steel));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 24px rgba(26,95,168,.3);
    flex-shrink: 0;
}
.step h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--navy);
    margin-bottom: .4rem;
}
.step p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ── DEPOIMENTOS ── */
.depoimentos { padding: 7rem 0; background: var(--light); }
.depo-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    position: relative;
    height: 100%;
}
.depo-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--sky);
    opacity: .2;
    position: absolute;
    top: .5rem;
    left: 1.4rem;
    line-height: 1;
}
.stars { color: #F6B93B; font-size: .9rem; margin-bottom: .75rem; }
.depo-card p { font-size: .95rem; color: var(--text); line-height: 1.6; font-style: italic; margin-bottom: 1.2rem; }
.depo-author { display: flex; align-items: center; gap: .8rem; }
.depo-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}
.depo-author strong { font-size: .95rem; color: var(--navy); display: block; font-weight: 600; }
.depo-author span { font-size: .8rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #144fa6 100%);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-band h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
}
.cta-band h2 span { color: var(--sky); }
.cta-band p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ── FAQ ── */
.faq { padding: 7rem 0; }
.accordion-item {
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 10px !important;
    margin-bottom: .8rem;
    overflow: hidden;
}
.accordion-button {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--navy) !important;
    background: #fff !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--steel) !important; }
.accordion-button::after { filter: hue-rotate(180deg); }
.accordion-body { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ── BLOG ── */
.blog { padding: 7rem 0; background: var(--white); }
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 20px 56px rgba(13,59,110,.14);
    transform: translateY(-8px);
}
.blog-thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 58%;
}
.blog-thumb-inner {
    position: absolute;
    inset: 0;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.blog-card:hover .blog-thumb-inner { transform: scale(1.06); }
.blog-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--accent);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 4px;
    z-index: 2;
}
.blog-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .8rem;
}
.blog-meta i { font-size: .85rem; }
.blog-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: .7rem;
    transition: color .2s;
}
.blog-card:hover h5 { color: var(--steel); }
.blog-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    transition: gap .2s, color .2s;
}
.blog-read-more:hover { gap: .8rem; color: var(--accent); }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.5);
    padding: 3rem 0 2rem;
    font-size: .88rem;
}
footer .brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; }
footer .brand span { color: var(--sky); }
footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--sky); }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all .2s;
    font-size: 1.1rem;
}
.footer-social a:hover { background: var(--steel); color: #fff; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 999;
    text-decoration: none;
    transition: all .25s;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); color: #fff; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.whatsapp-float:hover { animation: none; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Responsive */
@media (max-width: 768px) {
    .hero { padding-top: 90px; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .about-ceo-tag { right: 0; bottom: 1rem; }
    .step-line { display: none; }
    .trust-divider { display: none; }
    .frame-illustration { display: none; }
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .9rem 2rem;
    border-radius: 6px;
    border: none;
    transition: all .25s;
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

/* counter */
.counter { display: inline-block; }