@import "tailwindcss";

@source "../../index.html";
@source "../js/**/*.js";

@theme {
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

/* ===== MOBILE-FIRST RESPONSIVE ===== */
:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --nav-h: 3.5rem;
    --sticky-h: 3.75rem;
    --section-y-sm: 3.5rem;
    --section-y-md: 5rem;
    --section-y-lg: 6rem;
    --block-gap: 2rem;
    --block-gap-lg: 2.5rem;
    --stack-gap: 1rem;
}

@media (min-width: 640px) {
    :root {
        --nav-h: 4rem;
    }
}

@media (min-width: 768px) {
    :root {
        --nav-h: 5rem;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + var(--safe-top));
}

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

.skip-link {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    background: #1c1917;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Ritmo vertical — escala única de seções */
.section-pad {
    padding-top: var(--section-y-sm);
    padding-bottom: var(--section-y-sm);
}

@media (min-width: 640px) {
    .section-pad {
        padding-top: var(--section-y-md);
        padding-bottom: var(--section-y-md);
    }
}

@media (min-width: 768px) {
    .section-pad {
        padding-top: var(--section-y-lg);
        padding-bottom: var(--section-y-lg);
    }
}

.section-header {
    margin-bottom: var(--block-gap);
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: var(--block-gap-lg);
    }
}

.section-stack {
    display: flex;
    flex-direction: column;
    gap: var(--block-gap);
}

.section-stack--tight {
    gap: var(--stack-gap);
}

/* Copy scan-first — P0 seções críticas */
.section-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.scan-lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgb(87 83 78);
}

@media (min-width: 640px) {
    .scan-lead {
        font-size: 1rem;
    }
}

.scan-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scan-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(180 83 9);
}

.scan-eyebrow--light {
    color: rgb(251 191 36);
}

.scan-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgb(255 255 255 / 0.1);
}

.scan-stat__value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.1;
    color: #fff;
}

.scan-stat__label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(168 162 158);
}

.footer-portrait {
    width: 7rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgb(255 255 255 / 0.08);
}

.footer-portrait__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

@media (min-width: 640px) {
    .footer-portrait {
        width: 7.5rem;
    }
}

.cta-final__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.cta-final__price {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgb(254 243 199 / 0.9);
}

.safe-top {
    padding-top: var(--safe-top);
}

@media (max-width: 359px) {
    .nav-bar__inner {
        gap: 0.5rem;
    }

    .nav-location {
        font-size: 0.625rem;
        padding: 0.25rem 0.55rem;
        gap: 0.3rem;
    }
}

/* Navbar — translúcido sobre o hero, sólido depois */
.nav-bar {
    background: rgba(12, 10, 9, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.nav-bar--over-hero {
    background: rgba(12, 10, 9, 0.06);
    box-shadow: none;
}

.nav-bar--solid {
    background: rgba(12, 10, 9, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.35);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
    text-decoration: none;
}

.nav-brand__name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-brand__role {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(251, 191, 36, 0.85);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .nav-brand__name {
        font-size: 1.125rem;
    }

    .nav-brand__role {
        font-size: 0.6875rem;
    }
}

.nav-cta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s;
}

.nav-cta--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Navbar — fixed no HTML; absolute children usam o nav como referência */
.nav-bar__inner {
    height: var(--nav-h);
}

/* Badge de localização — flutuante abaixo do botão Agendar */
.nav-location {
    position: absolute;
    top: calc(100% + 0.375rem);
    right: max(1rem, calc(var(--safe-right) + 0.5rem));
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: rgba(28, 25, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 40;
    box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
    .nav-location {
        right: max(1.5rem, calc(var(--safe-right) + 0.75rem));
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
    }
}

@media (min-width: 1024px) {
    .nav-location {
        right: max(2rem, calc(var(--safe-right) + 1rem));
    }
}

.nav-location__icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.nav-location.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    cursor: pointer;
}

.nav-location.is-visible:hover {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(245, 158, 11, 0.35);
}

.nav-location.is-faded {
    opacity: 0;
    transform: translateY(-4px);
}

.nav-location__dot {
    position: relative;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: #22c55e;
    flex-shrink: 0;
}

.nav-location__dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: #22c55e;
    animation: navLocationPing 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes navLocationPing {
    0% { transform: scale(1); opacity: 0.7; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* ===== HERO — hierarquia enxuta ===== */
/* Altura e recuo ficam aqui, e não em utilitários, porque as duas regras
   dependem de ordem: vh precisa vir antes de dvh para servir de fallback, e o
   nav mede --nav-h + --safe-top por causa da classe .safe-top. */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-h) + var(--safe-top));
}

@media (max-width: 767px) {
    .hero {
        min-height: 88vh;
        min-height: 88dvh;
    }

    /* Autoridade — retrato não estica na largura total do celular */
    #autoridade .aspect-\[3\/4\] {
        max-width: 18.5rem;
        margin-inline: auto;
    }

    /* Rodapé — foto + marca mais compactos */
    .footer-brand {
        gap: 1rem;
    }

    .footer-brand__copy {
        gap: 1rem;
    }

    .footer-portrait {
        width: 5.5rem;
    }

    /* Galeria horizontal — safe area e gesto de scroll */
    #gallery-mobile-scroll {
        padding-inline: max(1rem, var(--safe-left)) max(1rem, var(--safe-right));
        scroll-padding-inline: max(1rem, var(--safe-left));
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .gallery-mobile-slide {
        scroll-snap-stop: always;
    }

    /* FAQ — perguntas longas não colidem com o ícone */
    .faq-btn span {
        min-width: 0;
    }
}

.hero__scroll-cue {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
    color: rgb(168 162 158 / 0.85);
    animation: heroScrollCue 2.2s ease-in-out infinite;
}

.hero__scroll-cue svg {
    width: 1.25rem;
    height: 1.25rem;
}

@keyframes heroScrollCue {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(6px); opacity: 1; }
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 36rem;
}

.hero__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(251 191 36);
}

@media (min-width: 640px) {
    .hero__eyebrow {
        margin-bottom: 1.25rem;
        font-size: 0.75rem;
    }
}

.hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 6.5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero__title {
        margin-bottom: 1.25rem;
    }
}

.hero__lead {
    margin: 0 0 1.25rem;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 300;
    color: rgb(214 211 209);
}

@media (min-width: 640px) {
    .hero__lead {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
    }
}

.hero__ticket {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 1.5rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.75rem;
    background: rgb(28 25 23 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.08);
    backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
    .hero__ticket {
        margin-bottom: 1.75rem;
        padding: 0.75rem 1rem;
    }
}

.hero__ticket-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.2;
    color: rgb(251 191 36);
}

@media (min-width: 640px) {
    .hero__ticket-value {
        font-size: 1.375rem;
    }
}

.hero__ticket-note {
    font-size: 0.6875rem;
    line-height: 1.4;
    color: rgb(168 162 158);
}

@media (min-width: 640px) {
    .hero__ticket-note {
        font-size: 0.75rem;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        gap: 1rem 1.25rem;
    }
}

.hero__cta-secondary {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.safe-bottom {
    bottom: calc(0.75rem + var(--safe-bottom));
}

.pb-sticky {
    padding-bottom: calc(var(--sticky-h) + var(--safe-bottom) + 1.25rem);
}

.passive-toast-pos {
    bottom: calc(var(--sticky-h) + var(--safe-bottom) + 0.75rem);
}

.safe-toast {
    bottom: calc(var(--sticky-h) + var(--safe-bottom) + 0.5rem);
}

@media (min-width: 768px) {
    .passive-toast-pos {
        bottom: calc(2.5rem + var(--safe-bottom));
    }

    .safe-toast {
        bottom: calc(2.5rem + var(--safe-bottom));
    }
}

/* Touch targets — mínimo 44px em CTAs */
.cta-button,
.faq-btn {
    -webkit-tap-highlight-color: transparent;
}

/* Tipografia fluida para títulos de seção */
.heading-section {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    line-height: 1.2;
}

/* Marquee — cards menores no mobile */
@media (max-width: 639px) {
    .animate-marquee-left,
    .animate-marquee-right {
        animation-duration: 45s;
    }
}

/* Telas grandes — respiro e legibilidade */
@media (min-width: 1280px) {
    main > section .max-w-7xl,
    main > section .max-w-4xl {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1536px) {
    body {
        font-size: 1.0625rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1c1917; }
::-webkit-scrollbar-thumb { background: #57534e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #d97706; }

/* Hide scrollbar for mobile gallery */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* FAQ Transition Utilities */
.faq-content {
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.faq-content.open {
    opacity: 1;
    padding-bottom: 1.5rem;
}
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.rotate { transform: rotate(180deg); }

/* Toast Animation */
@keyframes slideUpFade {
    0% { transform: translate(-50%, 100%); opacity: 0; }
    10% { transform: translate(-50%, 0); opacity: 1; }
    90% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 100%); opacity: 0; }
}
.toast-animate {
    animation: slideUpFade 4s ease-in-out forwards;
}

/* Motion Design: Reveal on Scroll — conteúdo sempre visível (nunca opacity: 0) */
.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-on-scroll:not(.is-visible) {
        transform: translateY(20px);
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-on-scroll.is-visible {
        transform: translateY(0);
    }
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Sticky Mobile CTA Animation */
.sticky-mobile-cta {
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-mobile-cta.show {
    transform: translateY(0);
}

.sticky-mobile-cta__btn {
    box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.45);
}

/* Marquee Animation for Social Proof */
@keyframes marqueeLeft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}
.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marqueeLeft 35s linear infinite;
}
.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marqueeRight 35s linear infinite;
}
.marquee-container:hover .animate-marquee-left,
.marquee-container:hover .animate-marquee-right {
    animation-play-state: paused;
}

/* Jornada do protocolo — Preparação Estrutural */
.journey-step {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #78716c;
    background: #fff;
    border: 1px solid #e7e5e4;
}

@media (min-width: 640px) {
    .journey-step {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }
}

.journey-step--done {
    color: #57534e;
}

.journey-step--active {
    color: #92400e;
    background: #fffbeb;
    border-color: #fcd34d;
    box-shadow: 0 2px 8px -2px rgba(217, 119, 6, 0.25);
}

@media (max-width: 639px) {
    .journey-steps--timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 0.375rem;
        max-width: 16rem;
        margin-left: auto;
        margin-right: auto;
    }

    .journey-steps--timeline .journey-step {
        width: 100%;
        justify-content: center;
        border-radius: 0.75rem;
    }
}

/* Galeria mobile — indicadores */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0;
}

.faq-btn:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

.cta-button:focus-visible,
.micro-cta__btn:focus-visible,
.sticky-mobile-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.gallery-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #57534e;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dot:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

.gallery-dot--active {
    background: #f59e0b;
    transform: scale(1.2);
}

/* Micro-CTA entre seções */
.micro-cta {
    padding-top: 1.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgb(41 37 36 / 0.65);
}

.micro-cta__label {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: rgb(168 162 158);
}

.micro-cta__btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: rgb(217 119 6);
    transition: background 0.2s ease;
}

.micro-cta__btn:hover {
    background: rgb(245 158 11);
}

/* Faixa pós-FAQ */
.post-faq-cta {
    padding: var(--block-gap) 1rem;
    background: rgb(245 245 244);
    border-top: 1px solid rgb(231 229 228);
}

.post-faq-cta__inner {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.post-faq-cta__text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgb(87 83 78);
}

/* Produtos — colapsável no mobile */
.como-funciona-details__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 1rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(231 229 228);
    background: rgb(255 255 255);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(180 83 9);
    box-shadow: 0 1px 2px rgb(28 25 23 / 0.06);
}

.como-funciona-details__summary::-webkit-details-marker {
    display: none;
}

.como-funciona-details[open] .como-funciona-details__summary {
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .como-funciona-details__summary {
        display: none;
    }

    .como-funciona-details__panel {
        display: contents;
    }
}

@media (max-width: 1023px) {
    .como-funciona-details__panel > .section-pad + .section-pad {
        padding-top: 0;
    }

    .como-funciona-details__panel > .section-pad:not(:last-child) {
        padding-bottom: var(--block-gap);
    }
}

.products-details__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(255 255 255 / 0.12);
    background: rgb(255 255 255 / 0.05);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(251 191 36);
}

.products-details__summary::-webkit-details-marker {
    display: none;
}

.products-details[open] .products-details__summary {
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .products-details__summary {
        display: none;
    }
}

/* Hero prova social: texto + vídeo (4:5) */
.prova-social__hero {
    display: grid;
    gap: 1.5rem;
    margin-bottom: var(--block-gap);
}

@media (min-width: 1024px) {
    .prova-social__hero {
        grid-template-columns: 1fr minmax(16rem, 22rem);
        align-items: center;
        gap: clamp(2rem, 4vw, 4rem);
        margin-bottom: var(--block-gap-lg);
    }

    .prova-social__hero--no-video {
        grid-template-columns: 1fr;
        max-width: 42rem;
    }
}

.prova-social__hero-copy {
    text-align: center;
}

@media (min-width: 1024px) {
    .prova-social__hero-copy {
        text-align: left;
    }
}

.prova-social__hero-copy .section-headline {
    margin-bottom: 0;
}

.prova-social__lead {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: rgb(168 162 158);
}

@media (min-width: 1024px) {
    .prova-social__lead {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
}

.prova-social__gallery-block {
    margin-top: 0;
}

.featured-video-wrap {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .featured-video-wrap {
        max-width: 22rem;
        margin-inline: 0;
        justify-self: end;
    }
}

.featured-video {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(12 10 9);
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.65);
    aspect-ratio: 4 / 5;
    width: 100%;
    margin-inline: auto;
}

.featured-video__media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: rgb(12 10 9);
    cursor: pointer;
}

.featured-video.is-playing .featured-video__media {
    cursor: default;
}

.featured-video__spinner {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.featured-video.is-buffering .featured-video__spinner {
    display: flex;
}

.featured-video__spinner::after {
    content: '';
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 2px solid rgb(255 255 255 / 0.22);
    border-top-color: rgb(251 191 36);
    animation: featured-video-spin 0.7s linear infinite;
}

@keyframes featured-video-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .featured-video__spinner::after {
        animation: none;
        border-top-color: rgb(255 255 255 / 0.55);
    }
}

.featured-video__play {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

.featured-video.is-playing .featured-video__play {
    opacity: 0;
    pointer-events: none;
}

.featured-video__play-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.58);
    box-shadow:
        0 0 0 1px rgb(255 255 255 / 0.16),
        0 8px 24px rgb(0 0 0 / 0.35);
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-video__play-icon {
    width: 1.4rem;
    height: 1.4rem;
    color: white;
    margin-left: 0.22rem;
    stroke-width: 2.25;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.35));
}

.featured-video__play:hover .featured-video__play-badge {
    background: rgb(0 0 0 / 0.74);
    box-shadow:
        0 0 0 1px rgb(255 255 255 / 0.24),
        0 10px 28px rgb(0 0 0 / 0.4);
    transform: scale(1.07);
}

.featured-video__play:active .featured-video__play-badge {
    transform: scale(0.96);
}

.featured-video__play:focus-visible {
    outline: none;
}

.featured-video__play:focus-visible .featured-video__play-badge {
    outline: 2px solid rgb(255 255 255 / 0.9);
    outline-offset: 3px;
}

.featured-video--play-failed .featured-video__play-badge {
    background: rgb(127 29 29 / 0.75);
}

.featured-video--error {
    outline: 2px solid rgb(248 113 113 / 0.65);
    outline-offset: 2px;
}

.featured-video--error .featured-video__media {
    opacity: 0.45;
}

.featured-video--error .featured-video__play-badge {
    background: rgb(127 29 29 / 0.8);
}

.featured-video-wrap:has(.featured-video--error) .featured-video__caption {
    color: rgb(248 113 113);
}

.featured-video__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem 1rem;
    background: linear-gradient(to top, rgb(12 10 9 / 0.95) 0%, rgb(12 10 9 / 0.55) 70%, transparent 100%);
    pointer-events: none;
}

.featured-video--muted-hint .featured-video__controls {
    padding-top: 1.75rem;
}

.featured-video--muted-hint .featured-video__controls::before {
    content: 'Som desativado — ajuste o volume';
    position: absolute;
    top: 0.35rem;
    left: 1rem;
    right: 1rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: rgb(254 243 199);
    text-align: center;
    pointer-events: none;
}

.featured-video.is-playing .featured-video__controls {
    display: flex;
    pointer-events: auto;
}

.featured-video__fullscreen {
    display: none;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .featured-video.is-playing .featured-video__fullscreen {
        display: inline-flex;
    }
}

.featured-video:fullscreen,
.featured-video:-webkit-full-screen {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    border: 0;
    background: rgb(12 10 9);
}

.featured-video__control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.12);
    color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.featured-video__control-btn:hover {
    background: rgb(255 255 255 / 0.2);
}

.featured-video__control-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.featured-video__volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.featured-video__volume-slider {
    width: 100%;
    max-width: 10rem;
    height: 0.35rem;
    accent-color: rgb(245 158 11);
    cursor: pointer;
}

@media (max-width: 639px) {
    .featured-video__play-badge {
        width: 3.75rem;
        height: 3.75rem;
    }

    .featured-video__volume-slider {
        max-width: none;
    }
}

.featured-video__meta {
    margin-top: 0.875rem;
}

.featured-video__meta--desktop {
    display: none;
}

.featured-video__meta--mobile {
    display: block;
}

@media (min-width: 1024px) {
    .featured-video__meta--desktop {
        display: block;
        margin-top: 1.25rem;
        text-align: left;
    }

    .featured-video__meta--mobile {
        display: none;
    }
}

.featured-video__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgb(250 250 249);
}

.featured-video__caption {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: rgb(120 113 108);
}

.prova-social__depoimentos {
    margin-top: calc(var(--block-gap) + 0.5rem);
    padding-top: var(--block-gap);
    border-top: 1px solid rgb(255 255 255 / 0.08);
}

.prova-social__depoimentos-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .prova-social__depoimentos-header {
        margin-bottom: 2rem;
    }
}

.prova-social__depoimentos-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: rgb(250 250 249);
    margin: 0 0 0.5rem;
}

.prova-social__depoimentos-lead {
    margin: 0 auto;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgb(168 162 158);
}

.testimonials-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

#prova-social .gallery-dots {
    padding-bottom: 0.25rem;
}

.prova-social__gallery-desktop {
    align-items: stretch;
}

#prova-social .testimonial-card {
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgb(28 25 23 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.08);
}

#prova-social .testimonial-card h4 {
    color: rgb(250 250 249);
}

#prova-social .testimonial-card .text-stone-600 {
    color: rgb(168 162 158);
}

#prova-social .testimonial-card .text-stone-500 {
    color: rgb(120 113 108);
}

.service-card--featured {
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.35);
}

/* Miniaturas de produto — proporção vertical 2:4.5 (SVG ilustrativo) */
.product-miniature {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 5.75rem;
    aspect-ratio: 2 / 4.5;
    padding: 0.65rem 0.5rem 0.45rem;
    border-radius: 1rem;
    flex-shrink: 0;
}
.product-miniature--white {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.45);
}
.product-miniature--blue {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.22) 0%, rgba(49, 46, 129, 0.12) 100%);
    border: 1px solid rgba(129, 140, 248, 0.28);
    box-shadow: 0 12px 30px -12px rgba(49, 46, 129, 0.55);
}
.product-miniature__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}
@media (min-width: 640px) {
    .product-miniature {
        width: 6.75rem;
        padding: 0.75rem 0.55rem 0.5rem;
    }
}

/* Foto real de produto — preenche o card sem “flutuar” no frame */
.product-photo {
    width: clamp(7rem, 34vw, 10rem);
    aspect-ratio: 9 / 16;
    margin: 0;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.45);
}
.product-photo__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (min-width: 640px) {
    .product-photo {
        width: 9rem;
    }
}
@media (min-width: 768px) {
    .product-photo {
        width: 10rem;
    }
}

/* Prova social passiva — discreta */
.passive-social-toast--visible {
    opacity: 0.92 !important;
    transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-cue {
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .animate-marquee-left,
    .animate-marquee-right,
    .toast-animate {
        animation: none !important;
    }

    .faq-content,
    .faq-icon,
    .sticky-mobile-cta,
    #passive-social-toast,
    .nav-location {
        transition: none !important;
    }

    .nav-location__dot::before {
        animation: none !important;
    }
}
