/**
 * Don Bilhodres — design system
 * Paleta alinhada ao logo (espresso / bronze / pedra quente).
 * Tipografia: Bricolage Grotesque (display) + Figtree (corpo).
 */

/* -------------------------------------------------------------------------- */
/* Tokens                                                                     */
/* -------------------------------------------------------------------------- */

:root {
    --ink: #1a120d;
    --ink-soft: #3b2417;
    --bronze: #c4893f;
    --bronze-deep: #9a6a2e;
    --sand: #e6c291;
    --stone: #f3ece3;
    --stone-deep: #e7ddd0;
    --mist: #faf6f1;
    --white: #fffdfb;
    --text: #2a211c;
    --muted: #6b5a4c;
    --line: rgba(58, 36, 23, 0.12);
    --shadow: 0 18px 50px rgba(26, 18, 13, 0.14);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1120px;
    --header-h: 76px;
    --font-display: "Bricolage Grotesque", Georgia, serif;
    --font-body: "Figtree", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------- */
/* Reset / base                                                               */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(196, 137, 63, 0.18), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(59, 36, 23, 0.08), transparent 50%),
        linear-gradient(180deg, var(--mist) 0%, var(--stone) 100%);
    background-attachment: fixed;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
.btn {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 200;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.skip-link:focus {
    top: 1rem;
}

/* -------------------------------------------------------------------------- */
/* Tipografia                                                                 */
/* -------------------------------------------------------------------------- */

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

p {
    color: var(--muted);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bronze-deep);
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--ink-soft);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.text-link:hover {
    color: var(--bronze-deep);
    border-color: var(--bronze);
}

/* -------------------------------------------------------------------------- */
/* Botões                                                                     */
/* -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(154, 106, 46, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #d19a51 0%, var(--bronze) 100%);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-inner .btn--outline,
.section--cta .btn--outline {
    color: var(--ink);
    border-color: rgba(26, 18, 13, 0.25);
}

.page-inner .btn--outline:hover,
.section--cta .btn--outline:hover {
    background: rgba(26, 18, 13, 0.05);
}

.btn--ghost {
    background: rgba(255, 253, 251, 0.7);
    border-color: var(--line);
    color: var(--ink);
}

.btn--lg {
    min-height: 54px;
    padding-inline: 1.6rem;
}

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                               */
/* -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(250, 246, 241, 0.82);
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    min-height: var(--header-h);
    padding: 0.65rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand__logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(26, 18, 13, 0.15);
}

.brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.1;
}

.brand__tag {
    font-size: 0.68rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(38vw, 200px);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Telefone compacto no topo (ícone no mobile; número só em telas largas) */
.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 251, 0.85);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-phone:hover {
    background: var(--white);
    border-color: rgba(196, 137, 63, 0.45);
}

.nav-phone__icon {
    flex-shrink: 0;
}

.nav-phone__number {
    display: none;
}

/* No mobile o número aparece dentro do menu aberto */
.nav-links__phone a {
    font-variant-numeric: tabular-nums;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s var(--ease), opacity 0.25s ease, margin 0.25s ease;
}

.nav-links.ativo {
    max-height: 720px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    background: rgba(255, 253, 251, 0.7);
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: var(--white);
    border-color: var(--line);
}

.nav-links__cta .btn {
    width: 100%;
}

/* Dropdown Serviços */
.nav-item--dropdown {
    position: relative;
}

.nav-dropdown__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    width: 100%;
    min-height: 44px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 253, 251, 0.7);
    color: var(--ink-soft);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown__btn:hover,
.nav-dropdown__btn.is-current,
.nav-dropdown__btn[aria-expanded="true"] {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
}

.nav-dropdown__chevron {
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}

.nav-dropdown__btn[aria-expanded="true"] .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: grid;
    gap: 0.25rem;
    list-style: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
    transition: max-height 0.3s var(--ease), opacity 0.2s ease, margin 0.2s ease;
}

.nav-item--dropdown.is-open .nav-dropdown,
.nav-dropdown__btn[aria-expanded="true"] + .nav-dropdown {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.35rem;
}

.nav-dropdown a {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    background: rgba(26, 18, 13, 0.03);
}

.service-card {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* -------------------------------------------------------------------------- */
/* Páginas de erro                                                            */
/* -------------------------------------------------------------------------- */

.error-page {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 3.5rem 0 4.5rem;
    display: grid;
    place-items: center;
    min-height: calc(70svh - var(--header-h));
}

.error-page__card {
    width: min(640px, 100%);
    text-align: center;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255, 253, 251, 0.88);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.error-page__code {
    position: absolute;
    inset: auto 0 -0.35em;
    font-family: var(--font-display);
    font-size: clamp(6rem, 22vw, 10rem);
    font-weight: 800;
    line-height: 0.8;
    color: rgba(26, 18, 13, 0.05);
    pointer-events: none;
    user-select: none;
}

.error-page__card h1 {
    position: relative;
    margin-bottom: 0.75rem;
}

.error-page__lead {
    position: relative;
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.error-page__card > p {
    position: relative;
}

.error-page__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.error-page__actions .btn--outline {
    color: var(--ink);
    border-color: rgba(26, 18, 13, 0.25);
}

.error-page__actions .btn--outline:hover {
    background: rgba(26, 18, 13, 0.05);
}

.error-page__links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
}

.error-page__links a {
    font-weight: 700;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.error-page__links a:hover {
    color: var(--bronze-deep);
}

/* -------------------------------------------------------------------------- */
/* Hero (full-bleed)                                                          */
/* -------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    display: grid;
    place-items: end stretch;
    color: var(--white);
    overflow: clip;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 18, 13, 0.35) 0%, rgba(26, 18, 13, 0.55) 45%, rgba(26, 18, 13, 0.88) 100%),
        radial-gradient(circle at 70% 20%, rgba(196, 137, 63, 0.25), transparent 45%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto 4.5rem;
    animation: rise 0.9s var(--ease) both;
}

.hero__brand {
    width: clamp(96px, 18vw, 140px);
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
    animation: brand-in 1s var(--ease) both;
}

.hero__title {
    color: var(--white);
    max-width: 14ch;
    margin-bottom: 1rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__lead {
    max-width: 36ch;
    color: rgba(255, 253, 251, 0.88);
    font-size: 1.12rem;
    margin-bottom: 1.75rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    z-index: 2;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    transform: translateX(-50%);
}

.hero__scroll span {
    display: block;
    width: 6px;
    height: 6px;
    margin: 10px auto 0;
    border-radius: 50%;
    background: var(--sand);
    animation: scroll-dot 1.6s ease-in-out infinite;
}

/* -------------------------------------------------------------------------- */
/* Seções                                                                     */
/* -------------------------------------------------------------------------- */

.section {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 4.5rem 0;
}

.section__intro {
    max-width: 38rem;
    margin-bottom: 2.5rem;
}

.section--split {
    display: grid;
    gap: 2rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-list li {
    padding: 1.4rem 1.35rem;
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.72);
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(26, 18, 13, 0.04);
    transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 137, 63, 0.45);
}

/* Cases — interação visual sem "card" pesado no hero; aqui o container serve a escolha */
.case-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.case-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    isolation: isolate;
}

.case-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.case-item:hover img {
    transform: scale(1.05);
}

.case-item h3,
.case-item h2,
.case-item p {
    position: relative;
    z-index: 1;
    padding: 0 1.1rem;
}

.case-item h3,
.case-item h2 {
    margin-top: 0.9rem;
}

.case-item p {
    padding-bottom: 1.2rem;
}

.case-grid--page .case-item {
    background: rgba(255, 253, 251, 0.65);
    border: 1px solid var(--line);
}

/* About teaser */
.about-teaser,
.about-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-teaser__media,
.about-layout__media {
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-teaser__media img,
.about-layout__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.checklist {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 2rem;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text);
    font-weight: 600;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
}

/* CTA band */
.cta-band {
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: calc(var(--radius) + 8px);
    background:
        linear-gradient(135deg, rgba(26, 18, 13, 0.96), rgba(59, 36, 23, 0.92)),
        radial-gradient(circle at 20% 20%, rgba(196, 137, 63, 0.35), transparent 40%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    color: rgba(255, 253, 251, 0.82);
    max-width: 36rem;
    margin: 0.75rem auto 1.5rem;
}

.cta-band .hero__cta {
    justify-content: center;
}

.cta-band .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Galeria + depoimentos */
.gallery-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 253, 251, 0.8);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 137, 63, 0.4);
    box-shadow: 0 16px 36px rgba(26, 18, 13, 0.1);
}

.gallery-card__media {
    position: relative;
    overflow: hidden;
}

.gallery-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.gallery-card:hover .gallery-card__media img {
    transform: scale(1.04);
}

.gallery-card__tag {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(26, 18, 13, 0.78);
    color: var(--sand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-card__body {
    padding: 1.15rem 1.2rem 1.35rem;
}

.gallery-card__body p {
    font-size: 0.98rem;
}

.testimonial-grid {
    display: grid;
    gap: 1.25rem;
}

.testimonial-card {
    margin: 0;
    padding: 1.5rem;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 253, 251, 0.95), rgba(243, 236, 227, 0.85));
    border: 1px solid var(--line);
}

.testimonial-card > p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-card__author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(196, 137, 63, 0.35);
}

.testimonial-card__author strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
}

.testimonial-card__author span {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
}

.section--testimonials {
    padding-top: 1rem;
}

.areas__list a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.areas__list a:hover {
    color: var(--bronze-deep);
}

.areas__note a {
    color: var(--ink-soft);
    font-weight: 700;
}

.areas__intro a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__regions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    margin-top: 0.85rem;
}

.footer__regions a {
    font-size: 0.88rem;
    color: rgba(255, 253, 251, 0.7);
}

.footer__regions a:hover {
    color: var(--sand);
}

.regional-hero-copy {
    max-width: 46rem;
}

.regional-hero-copy .hero__cta {
    margin-top: 1.5rem;
}

.page-regional .areas__list a {
    display: inline-block;
}

/* Locais atendidos */
.section--areas {
    padding-top: 2rem;
}

.areas {
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: calc(var(--radius) + 6px);
    background: rgba(255, 253, 251, 0.78);
    border: 1px solid var(--line);
}

.areas__intro {
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.areas__intro strong {
    color: var(--ink);
    font-weight: 700;
}

.areas__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.areas__list li {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--white), var(--stone));
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.areas__list li:first-child {
    background: linear-gradient(135deg, rgba(196, 137, 63, 0.18), rgba(196, 137, 63, 0.08));
    border-color: rgba(196, 137, 63, 0.4);
    color: var(--ink);
}

.areas__list li:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 137, 63, 0.45);
}

.areas__note {
    margin-top: 1.5rem;
    font-size: 0.98rem;
}

/* Page banner interno */
.page-banner {
    padding: 3.5rem 0 1rem;
    background:
        linear-gradient(180deg, rgba(26, 18, 13, 0.92), rgba(26, 18, 13, 0.78)),
        url("../media/treinador/treinador.jpg") center/cover no-repeat;
    color: var(--white);
}

.page-banner__inner {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.page-banner .eyebrow {
    color: var(--sand);
}

.page-banner h1 {
    color: var(--white);
}

.page-banner__lead {
    margin-top: 0.75rem;
    max-width: 40ch;
    color: rgba(255, 253, 251, 0.84);
}

/* Serviços / FAQ / Contato */
.service-grid,
.contact-grid {
    display: grid;
    gap: 1.25rem;
}

.service-card,
.contact-card {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.75);
    border: 1px solid var(--line);
}

.service-card ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.45rem;
}

.service-card li {
    padding-left: 1rem;
    position: relative;
    color: var(--text);
}

.service-card li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--bronze-deep);
}

.faq {
    margin-top: 3rem;
}

.faq__item {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

.faq__item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item p {
    margin-top: 0.65rem;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
    margin-top: 2rem;
    padding: 3rem 1.25rem 6.5rem;
    background: var(--ink);
    color: rgba(255, 253, 251, 0.82);
}

.footer__grid {
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.footer__brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__brand img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.footer__brand p,
.footer__contact p {
    color: rgba(255, 253, 251, 0.65);
    font-size: 0.95rem;
}

.footer__nav,
.footer__contact {
    display: grid;
    gap: 0.55rem;
}

.footer__nav a:hover,
.footer__contact a:hover {
    color: var(--sand);
}

.footer__copy {
    width: min(var(--container), 100%);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 253, 251, 0.5);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 120;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(18, 140, 70, 0.4);
    transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.06);
}

/* -------------------------------------------------------------------------- */
/* Motion                                                                     */
/* -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes brand-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(12px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hero-drift {
    from {
        transform: scale(1.04) translateY(0);
    }
    to {
        transform: scale(1.08) translateY(-1.5%);
    }
}

@keyframes scroll-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(14px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .hero__content,
    .hero__brand,
    .hero__video,
    .hero__scroll span,
    .btn,
    .case-item img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* -------------------------------------------------------------------------- */
/* Responsivo                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .nav-phone {
        padding: 0;
        width: 44px;
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .navbar {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .navbar__actions {
        order: 3;
        margin-left: 0;
    }

    .nav-links {
        order: 2;
        width: auto;
        flex: 1;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        max-height: none;
        opacity: 1;
        overflow: visible;
        pointer-events: auto;
        margin: 0;
        gap: 0.1rem;
    }

    /* No desktop o número fica no menu; o botão do topo some para não estourar */
    .nav-phone {
        display: none;
    }

    .nav-links__phone a {
        font-variant-numeric: tabular-nums;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .brand__tag {
        max-width: 220px;
    }

    .nav-links a {
        background: transparent;
        border: none;
        padding: 0.5rem 0.65rem;
        font-size: 0.9rem;
    }

    .nav-links a:hover,
    .nav-links a[aria-current="page"] {
        background: rgba(26, 18, 13, 0.05);
    }

    .nav-dropdown__btn {
        width: auto;
        min-height: auto;
        padding: 0.5rem 0.65rem;
        font-size: 0.9rem;
        background: transparent;
        border: none;
        border-radius: 10px;
    }

    .nav-dropdown__btn:hover,
    .nav-dropdown__btn.is-current,
    .nav-dropdown__btn[aria-expanded="true"],
    .nav-item--dropdown:hover .nav-dropdown__btn,
    .nav-item--dropdown:focus-within .nav-dropdown__btn {
        background: rgba(26, 18, 13, 0.05);
        border-color: transparent;
    }

    .nav-dropdown {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        min-width: 240px;
        padding: 0.45rem;
        margin: 0;
        max-height: none;
        opacity: 0;
        overflow: visible;
        pointer-events: none;
        border-radius: 14px;
        background: rgba(255, 253, 251, 0.97);
        border: 1px solid var(--line);
        box-shadow: 0 16px 40px rgba(26, 18, 13, 0.14);
        transform: translateY(6px);
        transition: opacity 0.2s ease, transform 0.2s var(--ease);
        z-index: 120;
    }

    /* Ponte invisível para não fechar ao mover o mouse até o menu */
    .nav-dropdown::before {
        content: "";
        position: absolute;
        top: -0.5rem;
        left: 0;
        right: 0;
        height: 0.5rem;
    }

    .nav-item--dropdown:hover .nav-dropdown,
    .nav-item--dropdown:focus-within .nav-dropdown,
    .nav-item--dropdown.is-open .nav-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item--dropdown:hover .nav-dropdown__chevron,
    .nav-item--dropdown:focus-within .nav-dropdown__chevron,
    .nav-item--dropdown.is-open .nav-dropdown__chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown a {
        white-space: nowrap;
        background: transparent;
        border-radius: 10px;
        padding: 0.7rem 0.85rem;
    }

    .nav-dropdown a:hover {
        background: rgba(196, 137, 63, 0.12);
        border-color: transparent;
        color: var(--ink);
    }

    .nav-links__cta .btn {
        width: auto;
        margin-left: 0.25rem;
        min-height: 40px;
        padding: 0.55rem 0.95rem;
        font-size: 0.9rem;
    }

    .section--split {
        grid-template-columns: 1fr 1.1fr;
        align-items: start;
    }

    .case-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-teaser,
    .about-layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
    }

    .service-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        align-items: start;
    }
}

@media (min-width: 1100px) {
    .case-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__content {
        margin-bottom: 5.5rem;
    }

    .brand__tag {
        max-width: 280px;
    }

    .nav-links a,
    .nav-dropdown__btn {
        padding: 0.55rem 0.8rem;
        font-size: 0.95rem;
    }
}
