/* dxpert.com.br — site em produção na raiz do domínio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700&family=Sora:wght@500;600&display=swap');

:root {
    --color-orange: #FE5104;
    --color-orange-dark: #E64800;
    --color-yellow: #FDCB2D;
    --color-cream: #F5EFE0;
    --color-peach: #FFEFE6;
    --color-white: #FFFFFF;
    --color-text: #666666;
    --color-heading: #3D3D3D;
    --font-heading: 'Montserrat', sans-serif;
    --font-nav: 'Sora', sans-serif;
    --font-base: 'Inter', -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin: 0;
    line-height: 1.2;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow, .eyebrow-inline, .eyebrow-center {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 0.5rem;
}
.eyebrow-center { text-align: center; }

.btn-solid, .btn-outline, .btn-solid-light {
    display: inline-block;
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
}
.btn-solid { background: var(--color-orange); color: #fff; }
.btn-solid:hover { background: var(--color-orange-dark); }
.btn-solid-light { background: rgba(254,81,4,.15); color: var(--color-orange); }
.btn-solid-light:hover { background: var(--color-orange); color: #fff; }
.btn-outline { background: rgba(254,81,4,.12); color: var(--color-orange); }
.btn-outline:hover { background: var(--color-orange); color: #fff; }
.btn-cta {
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 0.85rem;
    padding: .75rem 1.5rem;
    border-radius: 100px;
    white-space: nowrap;
}
.btn-cta:hover { background: var(--color-orange-dark); }

/* ── Header ───────────────────────────────────────────── */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1rem 0;
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand-wordmark img { height: 34px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.site-nav a:not(.btn-cta) {
    font-family: var(--font-nav);
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
}
.site-nav a:not(.btn-cta):hover { color: var(--color-orange); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: #fff;
}
.hero > .container { width: 100%; }
.hero-inner { max-width: 640px; margin: 0; }
.hero .eyebrow { color: #BD3C02; font-weight: 600; }
.hero h1 { color: #fff; font-size: 4rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-checklist { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: .6rem; }
.hero-checklist li { display: flex; align-items: center; gap: .6rem; font-size: 18px; font-weight: 400; }

@keyframes heroSlideIn {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .hero-checklist,
.hero-inner .btn-solid {
    opacity: 0;
    animation: heroSlideIn .7s ease forwards;
}
.hero-inner .eyebrow { animation-delay: .1s; }
.hero-inner h1 { animation-delay: .25s; }
.hero-inner .hero-checklist { animation-delay: .4s; }
.hero-inner .btn-solid { animation-delay: .55s; }
.hero-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--color-orange);
    color: var(--color-orange);
    font-size: .7rem;
    flex-shrink: 0;
}

/* ── Sobre ────────────────────────────────────────────── */
.sobre {
    background: var(--color-peach) url('../img/rectangle-15.png') left bottom no-repeat;
    padding: 6.5rem 0;
    position: relative;
    overflow: visible;
}
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-img img { border-radius: 24px; }
.sobre-texto h2 { font-size: 42px; margin-bottom: 1.25rem; }
.sobre-texto p { margin: 0 0 1rem; font-family: var(--font-heading); font-size: 19px; line-height: 1.7; font-weight: 500; color: var(--color-heading); }

/* ── Diferencial ──────────────────────────────────────── */
.diferencial { background: var(--color-peach); padding: 6.5rem 0; }
.diferencial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.diferencial-lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.75rem; }
.diferencial-lista li {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-heading);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(254,81,4,.25);
}

/* ── Como você será atendido ──────────────────────────── */
.atendido { background: var(--color-white); padding: 6.5rem 0; }
.atendido h2 { font-size: 42px; margin-bottom: 3rem; }
.atendido-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5rem 3rem; }
.atendido-item { text-align: center; padding: 2.5rem 2rem; border: 1px solid transparent; border-radius: 20px; transition: border-color .2s ease; }
.atendido-item:hover { border-color: rgba(61,61,61,.12); }
.atendido-icon { color: var(--color-orange); display: inline-flex; margin-bottom: 1rem; }
.atendido-icon svg { width: 40px; height: 40px; }
.atendido-item h3 { font-size: 22px; font-weight: 600; color: var(--color-orange); margin-bottom: .75rem; }
.atendido-item p { margin: 0; font-family: var(--font-heading); font-size: 19px; line-height: 1.7; font-weight: 500; color: var(--color-heading); }

/* ── Depoimentos ──────────────────────────────────────── */
.depoimentos { padding: 6.5rem 0; background: var(--color-white); }
.depoimentos-head { text-align: center; max-width: 720px; margin: 0 auto; }
.depoimentos-head h2 { font-size: 36px; margin-bottom: 1rem; }
.depoimentos-sub { margin-bottom: 2rem; font-family: var(--font-heading); font-size: 19px; font-weight: 500; color: var(--color-heading); }
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    margin: 4rem auto 0;
    border-radius: 20px;
    overflow: hidden;
}
.depoimento-card { padding: 46px; position: relative; }
.depoimento-card-0 { background: var(--color-orange); color: #fff; }
.depoimento-card-1 { background: #FFB088; }
.depoimento-card-2 { background: #FFD1BA; }
.depoimento-card-3 { background: var(--color-peach); }
.depoimento-avatar { width: 57px; height: 57px; border-radius: 50%; margin-bottom: 20px; }
.depoimento-texto { font-size: 15px; line-height: 27px; font-weight: 500; margin: 0 0 20px; }
.depoimento-nome { font-size: 16px; font-weight: 600; margin: 0 0 20px; font-family: var(--font-heading); }
.depoimento-cargo { font-size: 12px; font-weight: 400; margin: 0; opacity: .8; }

/* ── CTA Simulação ────────────────────────────────────── */
.cta-simulacao {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
}
.cta-simulacao-inner { max-width: 560px; margin: 0 auto; }
.cta-simulacao-wordmark { margin: 0 auto 1.5rem; max-width: 260px; }
.cta-simulacao p { margin: 0 0 2rem; font-family: var(--font-heading); font-size: 20px; line-height: 1.6; font-weight: 500; }
.cta-simulacao-nota { display: flex; align-items: center; justify-content: center; gap: .4rem; font-family: var(--font-heading); font-size: 16px; font-weight: 400; opacity: .62; margin-top: 1rem !important; }
.cta-simulacao-nota svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Dxpertador ───────────────────────────────────────── */
.dxpertador { background: var(--color-white); padding: 6.5rem 0; }
.dxpertador-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dxpertador-logo { color: var(--color-orange); font-weight: 700; font-family: var(--font-heading); margin: 0 0 1rem; }
.dxpertador-texto h2 { font-size: 36px; font-weight: 700; margin-bottom: 1.25rem; }
.dxpertador-texto p { margin: 0 0 1.5rem; font-family: var(--font-heading); font-size: 19px; line-height: 1.7; font-weight: 500; color: var(--color-heading); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
    background-color: var(--color-orange);
    background-image: url('../img/ellipse-5.png'), url('../img/ellipse-4.png');
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    padding: 6.5rem 0 5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.faq-icon {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}
.faq-titulo { color: #fff; font-size: 2rem; margin-bottom: 3rem; }
.faq-lista { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; margin: 0 auto; }
.faq-item { border-radius: 10px; }
.faq-pergunta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: none;
    border-radius: 10px;
    text-align: left;
    padding: 1.1rem 1.5rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    cursor: pointer;
}
.faq-caret { color: var(--color-orange); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-resposta p { margin: 1.25rem 1.5rem 0; font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, .85); }
.faq-resposta strong { color: #fff; font-weight: 700; }
.faq-final { text-align: center; font-family: var(--font-heading); font-size: 32px; font-weight: 600; color: #fff; margin: 4rem 0 0; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--color-white); padding: 3rem 0; }
.footer-inner {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}
.footer-col-right { text-align: right; }
.footer-redes-label { font-size: .85rem; color: var(--color-heading); margin: 0 0 1rem; }
.footer-redes-icons { display: flex; justify-content: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--color-orange-dark); }
.footer-copy { font-size: .85rem; margin: 0 0 1rem; }
.footer-contato-link { color: var(--color-orange); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; }
.footer-contato-link svg { width: 16px; height: 16px; }

/* ── WhatsApp float ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    z-index: 60;
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(20,15,10,.97);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    .site-nav.open { display: flex; }
    .site-nav .btn-cta { align-self: flex-start; }

    .hero { padding: 7rem 0 4rem; }
    .hero h1 { font-size: 2.3rem; }

    .sobre-grid, .diferencial-grid, .dxpertador-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .diferencial-img, .dxpertador-img { order: -1; }
    .sobre { background-image: none; }

    .atendido-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr 1fr; }
    .faq-titulo { font-size: 1.4rem; }
}

@media (max-width: 560px) {
    .depoimentos-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.9rem; }
    .sobre-texto h2, .atendido h2, .depoimentos-head h2 { font-size: 1.6rem; }

    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-col-right { text-align: center; }
    .footer-redes-icons { justify-content: center; }
}

/* ── Animações de entrada ao rolar a página ──────────────
   Mesmo padrão de direção do site original (Elementor):
   texto ao lado de imagem entra do seu próprio lado,
   títulos centrais entram de cima, grades entram com fade. */
[data-reveal] {
    opacity: 0;
    transition: opacity .7s ease-out, transform .7s ease-out;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="down"]  { transform: translateY(-24px); }
[data-reveal="up"]    { transform: translateY(24px); }
[data-reveal="fade"]  { transform: translateY(14px); }
[data-reveal].is-visible { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { transition: none; opacity: 1; transform: none; }
}
