/* ============================================================
   VH Plantas Adultas — Sections CSS (Part 2)
   ============================================================ */

/* ============================================================
   7. HERO SECTION
   ============================================================ */
/* ============================================================
   7. HERO SECTION — V2 Centered (Floral Studio Style)
   ============================================================ */
.vh-hero {
    position: relative;
    background-color: var(--color-cream);
    overflow: hidden;
    padding-top: clamp(2.5rem, 7vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.vh-hero__upper {
    text-align: center;
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: clamp(4rem, 8vw, 6rem);
    animation: heroFadeInUp 1s var(--ease-smooth) both;
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vh-hero__headline {
    font-family: var(--font-serif);
    font-size: var(--text-hero);
    font-weight: 500; /* Lighter for a more editorial look */
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--color-black);
    max-width: 16ch;
    text-wrap: balance;
}

.vh-hero__subline {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 48ch;
    opacity: 0.9;
}


.vh-hero__ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-2);
}

/* ── Image Frame with Reveal ── */
.vh-hero__reveal-area {
    position: relative;
    width: 100%;
}

.vh-hero__frame {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: clamp(500px, 75vh, 850px);
    background-size: cover;
    background-position: center 0%;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: var(--color-cream-dark);
    will-change: background-position;
}

@media (max-width: 768px) {
    .vh-hero__frame { 
        width: 100%;
        margin-left: 0;
        height: 450px; 
    }
}


.vh-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,20,0.1), transparent 30%, transparent 70%, rgba(26,26,20,0.15));
    pointer-events: none;
}




/* ── Parallax Decorative Leaf ── */
.vh-hero__leaf-parallax {
    position: absolute;
    top: -30px;
    right: 5%;
    z-index: 5;
    pointer-events: none;
    animation: leafFloat 6s ease-in-out infinite alternate;
}

@keyframes leafFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(20px) rotate(15deg); }
}

/* ── Scroll Cue ── */
.vh-hero__scroll-cue {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.vh-hero__scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    display: block;
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   8. COLLECTION — Premium Redesign
   ============================================================ */

/* ── Section shell ──────────────────────────────────────────── */
.vh-collection {
    padding-block: clamp(4rem, 8vw, 7rem);
    padding-block-end: calc(clamp(4rem, 8vw, 7rem) + 2rem);
    background-color: var(--color-cream);
    overflow-x: hidden; /* Prevents page scroll while allowing side-to-side bleed */
}

/* ── Header: two-column split ───────────────────────────────── */
.vh-collection__header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vh-collection__header-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border);
}

.vh-collection__header-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.vh-collection__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.vh-collection__eyebrow-line {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.7;
}

.vh-collection__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--color-black);
    max-width: 14ch;
}

.vh-collection__header-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    max-width: 560px;
}

.vh-collection__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 38ch;
}

/* Arrow control buttons (moved to header) */
.vh-collection__controls {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
}

.vh-collection__arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    cursor: pointer;
    transition:
        background var(--trans-base),
        border-color var(--trans-base),
        color var(--trans-base),
        transform 200ms var(--ease-spring);
    flex-shrink: 0;
}
.vh-collection__arrow-btn:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
    transform: scale(1.06);
}
.vh-collection__arrow-btn:active { transform: scale(0.96); }
.vh-collection__arrow-btn svg { pointer-events: none; }

/* Progress track (below header split) */
.vh-collection__track {
    position: relative;
    height: 1px;
    background-color: var(--color-border);
    margin-top: -1px; /* overlaps bottom border */
    overflow: hidden;
}
.vh-collection__track-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
    transition: width 350ms var(--ease-smooth);
    border-radius: 1px;
}

/* ── Rail ───────────────────────────────────────────────────── */
.vh-collection__rail-wrap {
    position: relative;
    /* Aligns the start of the rail exactly with the grid container */
    margin-left: calc(max(0px, (100vw - var(--max-width)) / 2) + var(--container-pad));
    /* Extends the rail all the way to the right edge of the screen */
    width: calc(100vw - (max(0px, (100vw - var(--max-width)) / 2) + var(--container-pad)));
    max-width: none;
}

.vh-collection__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(280px, 72vw);
    gap: clamp(1.25rem, 3vw, 2rem);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-block: 2rem;
    margin-block: -2rem;

    /* No left padding here as the wrapper's margin already handles alignment */
    padding-left: 0;
    /* Small right padding so the last item doesn't touch the screen edge */
    padding-right: var(--container-pad);

    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}
.vh-collection__rail::-webkit-scrollbar { display: none; }
.vh-collection__rail.is-dragging { cursor: grabbing; }
.vh-collection__rail.is-dragging .vh-card { user-select: none; }

/* ── Card ───────────────────────────────────────────────────── */
.vh-card {
    scroll-snap-align: start;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(26,26,20,0.04); /* Sombra base muito sutil */
    transition:
        transform 450ms var(--ease-smooth),
        border-color 450ms var(--ease-smooth),
        box-shadow 450ms var(--ease-smooth);
    will-change: transform;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.vh-card:hover {
    transform: scale(0.98); /* Efeito de 'destaque de margem' ao recuar levemente */
    box-shadow: none; /* Remove a sombra no hover conforme solicitado */
    border-color: var(--color-gold); /* Destaque premium com a cor da marca */
}

/* ── Card media area ────────────────────────────────────────── */
.vh-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--color-cream-dark);
    flex-shrink: 0;
}

.vh-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 650ms var(--ease-smooth);
}
.vh-card:hover .vh-card__img { transform: scale(1.06); }

/* Placeholder */
.vh-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #E4DFD4 0%, var(--color-cream-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}
.vh-card__placeholder-icon {
    width: 48px;
    height: auto;
    color: var(--color-gold);
    opacity: 0.45;
}
.vh-card__placeholder-text {
    font-family: var(--font-serif);
    font-size: var(--text-xs);
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* Badge — typo-driven, minimal */
.vh-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35em 0.85em;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}
/* Badge colour variants */
.vh-card__badge--unico {
    background: rgba(200,169,110,0.92);
    color: #1A1A14;
}
.vh-card__badge--limitado {
    background: rgba(26,26,20,0.82);
    color: var(--color-gold-light);
}
.vh-card__badge--centenario {
    background: rgba(45,80,22,0.88);
    color: var(--color-cream);
}
.vh-card__badge--raro {
    background: rgba(255,255,255,0.88);
    color: var(--color-black);
}

/* Small decorative item number */
.vh-card__num {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-4);
    font-family: var(--font-serif);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--trans-base);
}
.vh-card:hover .vh-card__num { opacity: 0; }

/* Hover overlay */
.vh-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,26,20,0.88) 0%,
        rgba(26,26,20,0.3) 45%,
        transparent 70%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-6);
    opacity: 0;
    transition: opacity 320ms var(--ease-smooth);
    pointer-events: auto; /* Garante que intercepte cliques */
    text-decoration: none;
}
.vh-card:hover .vh-card__overlay { opacity: 1; }


.vh-card__overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.96);
    color: var(--color-black);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75em 1.6em;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background var(--trans-fast), transform 200ms var(--ease-spring);
    transform: translateY(6px);
}
.vh-card:hover .vh-card__overlay-btn { transform: translateY(0); }
.vh-card__overlay-btn:hover { background: var(--color-white); }
.vh-card__overlay-btn svg { flex-shrink: 0; transition: transform var(--trans-fast); }
.vh-card__overlay-btn:hover svg { transform: translateX(3px); }

/* ── Card info ──────────────────────────────────────────────── */
.vh-card__info {
    padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-3);
    justify-content: space-between;
}

.vh-card__info-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.vh-card__name {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.vh-card__tagline {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Inline text CTA (small, subtle) */
.vh-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--trans-fast), gap var(--trans-fast);
    align-self: flex-start;
}
.vh-card__cta:hover {
    color: var(--color-green);
    gap: var(--space-3);
}
.vh-card__cta-arrow {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid currentColor;
    align-items: center;
    justify-content: center;
    transition: background var(--trans-fast), border-color var(--trans-fast), color var(--trans-fast);
    flex-shrink: 0;
}
.vh-card__cta:hover .vh-card__cta-arrow {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}
.vh-card__cta-arrow svg { transition: transform var(--trans-fast); }
.vh-card__cta:hover .vh-card__cta-arrow svg { transform: translateX(1px); }

/* ── Footer (dots + CTA) ────────────────────────────────────── */
.vh-collection__footer {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.vh-collection__footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

@media (max-width: 560px) {
    .vh-collection__footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    #btn-catalogo {
        margin-top: 20px;
    }
}

/* Dots navigation */
.vh-collection__dots {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.vh-collection__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: var(--color-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        width 300ms var(--ease-smooth),
        background-color 300ms var(--ease-smooth);
    flex-shrink: 0;
}
.vh-collection__dot.is-active {
    width: 20px;
    background-color: var(--color-gold);
}

/* ============================================================
   9. PROCESS  — Estilo Cards Verde (Inspirado na Referência)
   ============================================================ */

/* ── Section shell ─────────────────────────────────────────── */
.vh-process {
    position: relative;
    padding-block: clamp(4rem, 8vw, 7rem);
    background-color: var(--color-green);
    color: var(--color-white);
}

/* ── Header ────────────────────────────────────────────────── */
.vh-process__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vh-process__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-4);
}

.vh-process__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.vh-process__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    max-width: 54ch;
    margin-inline: auto;
}

/* ── Steps grid ─────────────────────────────────────────────── */
/* 6 colunas: row 1 = 3 cards (2 cols cada) | row 2 = 2 cards centralizados */
.vh-process__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

/* Row 1 — 3 cards, 2 colunas cada */
.vh-process__item:nth-child(1) { grid-column: 1 / span 2; }
.vh-process__item:nth-child(2) { grid-column: 3 / span 2; }
.vh-process__item:nth-child(3) { grid-column: 5 / span 2; }

/* Row 2 — 2 cards centralizados (colunas 2-3 e 4-5) */
.vh-process__item:nth-child(4) { grid-column: 2 / span 2; }
.vh-process__item:nth-child(5) { grid-column: 4 / span 2; }

/* ── Step item (article) ─────────────────────────────────────── */
.vh-process__item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        transform 320ms var(--ease-smooth),
        box-shadow 320ms var(--ease-smooth);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    cursor: default;
}

.vh-process__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* ── Step inner card ─────────────────────────────────────────── */
.vh-process__item-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
    height: 100%;
}

/* ── Icon box ────────────────────────────────────────────────── */
.vh-process__item-icon-wrap {
    width: 52px;
    height: 52px;
    background-color: rgba(45,80,22,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
    transition:
        background-color 300ms var(--ease-smooth),
        transform 300ms var(--ease-spring);
}
.vh-process__item-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-green);
}
.vh-process__item:hover .vh-process__item-icon-wrap {
    background-color: var(--color-green);
    transform: rotate(-5deg) scale(1.05);
}
.vh-process__item:hover .vh-process__item-icon-wrap svg {
    stroke: var(--color-white);
}

/* ── Content ─────────────────────────────────────────────────── */
.vh-process__item-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
}

.vh-process__item-title {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-black);
    letter-spacing: -0.01em;
    transition: color 250ms var(--ease-smooth);
}
.vh-process__item:hover .vh-process__item-title {
    color: var(--color-green);
}

.vh-process__item-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ── CTA wrapper ─────────────────────────────────────────────── */
.vh-process__cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* CTA button — outline branco sobre fundo verde */
.vh-btn--process-cta {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.60);
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1em 2.4em;
    transition:
        background var(--trans-base),
        border-color var(--trans-base),
        transform 200ms var(--ease-spring),
        box-shadow var(--trans-base);
}
.vh-btn--process-cta::after { display: none; }
.vh-btn--process-cta:hover {
    background: var(--color-white);
    color: var(--color-green);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.vh-btn--process-cta svg {
    stroke: currentColor;
    fill: currentColor;
    transition: transform var(--trans-base);
}
.vh-btn--process-cta:hover svg { transform: translateX(2px); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .vh-process__grid { grid-template-columns: repeat(2, 1fr); }
    .vh-process__item:nth-child(n) { grid-column: auto; }
}

@media (max-width: 540px) {
    .vh-process__grid { grid-template-columns: 1fr; }
    .vh-process__item:nth-child(n) { grid-column: auto; }
    .vh-process__header { text-align: left; }
    .vh-process__subtitle { margin-inline: 0; }
}


/* ============================================================
   10. PORTFOLIO
   ============================================================ */
.vh-portfolio {
    padding-block: var(--space-24);
    background-color: var(--color-cream);
}

.vh-portfolio__header {
    margin-bottom: var(--space-10);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.vh-portfolio__filters {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-2);
}

.vh-portfolio__filter {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5em 1.4em;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--trans-base);
    background: transparent;
}
.vh-portfolio__filter:hover,
.vh-portfolio__filter.is-active {
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-cream);
}

.vh-portfolio__grid {
    columns: 3;
    column-gap: var(--space-5);
}

.vh-portfolio__item {
    break-inside: avoid;
    margin-bottom: var(--space-5);
    transition: opacity 400ms, transform 400ms;
    min-height: 200px;
}
.vh-portfolio__item.is-hidden { display: none; }

.vh-portfolio__item-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--color-cream-dark);
}

.vh-portfolio__img {
    width: 100%;
    display: block;
    transition: transform 600ms var(--ease-smooth);
}
.vh-portfolio__item:hover .vh-portfolio__img { transform: scale(1.04); }

.vh-portfolio__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(26,26,20,0.75), transparent);
    color: var(--color-white);
    font-size: var(--text-xs);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity var(--trans-base);
}
.vh-portfolio__item:hover .vh-portfolio__caption { opacity: 1; }

.vh-portfolio__cat-badge {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.2em 0.7em;
    border-radius: var(--radius-pill);
}

.vh-portfolio__empty {
    padding-block: var(--space-16);
}
.vh-portfolio__empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    text-align: center;
    color: var(--color-text-muted);
    border: 1.5px dashed var(--color-border);
    padding: var(--space-16);
    border-radius: var(--radius-lg);
}
.vh-portfolio__empty-icon { width: 56px; opacity: 0.35; }

.vh-portfolio__cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-12);
}

/* ============================================================
   11. WHY VH
   ============================================================ */
.vh-why {
    padding-block: var(--space-24);
    background-color: var(--color-black);
    color: var(--color-cream);
}

.vh-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.vh-why__quote-wrap { position: relative; }

.vh-why__quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 12vw, 9rem);
    line-height: 0.6;
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: -0.25em;
    left: -0.12em;
    pointer-events: none;
    user-select: none;
}

.vh-why__quote {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--color-cream);
    position: relative;
    z-index: 1;
}

.vh-why__cite {
    display: block;
    margin-top: var(--space-6);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-style: normal;
}

.vh-why__badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: var(--space-10);
    padding: var(--space-8) var(--space-10);
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: var(--radius-md);
    background: rgba(200,169,110,0.05);
}

.vh-why__badge-num {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.vh-why__badge-text {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.vh-why__items-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.vh-why__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vh-why__item:last-child { border-bottom: none; padding-bottom: 0; }

.vh-why__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    opacity: 0.85;
}
.vh-why__item-icon svg { width: 100%; height: 100%; }

.vh-why__item-title {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.vh-why__item-desc {
    font-size: var(--text-sm);
    color: rgba(245,242,236,0.72);
    line-height: 1.7;
}

/* ============================================================
   12. TESTIMONIALS — Slider Layout
   ============================================================ */

/* ── Section shell ──────────────────────────────────────────── */
.vh-testimonials {
    padding-block: clamp(4rem, 8vw, 7rem);
    padding-block-end: calc(clamp(4rem, 8vw, 7rem) + 2rem); /* espaço extra p/ sombra do hover */
    background-color: var(--color-cream);
}

/* ── Header: split layout ───────────────────────────────────── */
.vh-testimonials__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

.vh-testimonials__header-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    flex: 0 0 auto;
    max-width: 480px;
}

.vh-label__line {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.8;
    vertical-align: middle;
}

.vh-testimonials__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--color-black);
    max-width: 16ch;
}

.vh-testimonials__header-right {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    flex: 1;
    max-width: 480px;
}

.vh-testimonials__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 36ch;
}

/* Arrow nav buttons */
.vh-testimonials__controls {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
}

.vh-testimonials__arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    cursor: pointer;
    transition:
        background var(--trans-base),
        border-color var(--trans-base),
        color var(--trans-base),
        transform 200ms var(--ease-spring);
    flex-shrink: 0;
}
.vh-testimonials__arrow-btn:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
    transform: scale(1.06);
}
.vh-testimonials__arrow-btn:active { transform: scale(0.96); }
.vh-testimonials__arrow-btn svg { pointer-events: none; }

/* ── Progress track ─────────────────────────────────────────── */
.vh-testimonials__track {
    position: relative;
    height: 1px;
    background-color: var(--color-border);
    margin-top: -1px; /* sobrepõe a border-bottom do header */
    overflow: hidden;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.vh-testimonials__track-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
    transition: width 350ms var(--ease-smooth);
    border-radius: 1px;
}

/* ── Rail ───────────────────────────────────────────────────── */
.vh-testimonials__rail-wrap {
    position: relative;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.vh-testimonials__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(420px, 82vw);
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-2);
    padding-right: var(--container-pad);
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}
.vh-testimonials__rail::-webkit-scrollbar { display: none; }
.vh-testimonials__rail.is-dragging { cursor: grabbing; }
.vh-testimonials__rail.is-dragging .vh-test-card { user-select: none; }

/* ── Card ───────────────────────────────────────────────────── */
.vh-test-card {
    scroll-snap-align: start;
    background-color: var(--color-cream-dark);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border: 1px solid rgba(26,26,20,0.07);
    transition:
        transform 380ms var(--ease-smooth),
        box-shadow 380ms var(--ease-smooth),
        border-color 380ms var(--ease-smooth),
        background-color 380ms var(--ease-smooth);
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.vh-test-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: clamp(5rem, 8vw, 7rem);
    line-height: 0.75;
    color: var(--color-gold);
    opacity: 0.12;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    pointer-events: none;
    user-select: none;
    transition: opacity 380ms var(--ease-smooth);
}
.vh-test-card:hover {
    transform: scale(0.98); /* Efeito de 'margem premium' ao recuar levemente */
    box-shadow: none; /* Remove a sombra conforme solicitado */
    border-color: var(--color-gold); /* Borda em ouro para destaque premium */
    background-color: var(--color-white); /* Destaca o card sobre o fundo da seção */
}
.vh-test-card:hover::before { opacity: 0.2; }

/* Stars */
.vh-test-card__stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
}

.vh-star { flex-shrink: 0; }
.vh-star.is-filled { color: var(--color-gold); }
.vh-star:not(.is-filled) { color: var(--color-border); }

/* Heading (título do depoimento — destaque) */
.vh-test-card__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--color-black);
    margin-top: var(--space-1);
    padding-right: 2rem; /* espaço para o « quotemark decorativo */
}

/* Quote */
.vh-test-card__quote {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.75;
    color: var(--color-text-muted);
    flex: 1;
}

/* Author row */
.vh-test-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: auto;
    padding-top: 2rem; /* ≥ 30px */
    border-top: 1px solid var(--color-border);
}

.vh-test-card__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(26,26,20,0.12);
}

.vh-test-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.vh-test-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vh-test-card__name {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.2;
}

.vh-test-card__role {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
}

/* ── Footer: dots ───────────────────────────────────────────── */
.vh-testimonials__footer {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.vh-testimonials__dots {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.vh-testimonials__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: var(--color-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        width 300ms var(--ease-smooth),
        background-color 300ms var(--ease-smooth);
    flex-shrink: 0;
}
.vh-testimonials__dot.is-active {
    width: 20px;
    background-color: var(--color-gold);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .vh-testimonials__header { flex-direction: column; align-items: flex-start; gap: var(--space-6); border-bottom: none; }
    .vh-testimonials__header-right { max-width: 100%; width: 100%; }
    .vh-testimonials__track { margin-top: 0; }
    .vh-testimonials__rail { grid-auto-columns: min(360px, 88vw); }
}

@media (max-width: 560px) {
    .vh-testimonials__header-right { flex-direction: column; align-items: flex-start; }
    .vh-testimonials__rail { grid-auto-columns: min(320px, 92vw); }
}

/* ============================================================
   13. FAQ
   ============================================================ */
.vh-faq {
    padding-block: var(--space-24);
    background-color: var(--color-white);
}

.vh-faq__header {
    margin-bottom: var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

.vh-faq__list {
    display: flex;
    flex-direction: column;
    max-width: 820px;
    margin-inline: auto;
}

.vh-faq__item { border-bottom: 1px solid var(--color-border); }
.vh-faq__item:last-child { border-bottom: none; }

.vh-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.vh-faq__question-text {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.3;
    transition: color var(--trans-fast);
}
.vh-faq__question:hover .vh-faq__question-text,
.vh-faq__question[aria-expanded="true"] .vh-faq__question-text { color: var(--color-green); }

.vh-faq__toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--trans-base);
}
.vh-faq__question[aria-expanded="true"] .vh-faq__toggle-icon {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: rotate(180deg);
}

.vh-faq__icon-minus { display: none; }
.vh-faq__question[aria-expanded="true"] .vh-faq__icon-plus  { display: none; }
.vh-faq__question[aria-expanded="true"] .vh-faq__icon-minus { display: block; }

.vh-faq__answer {
    overflow: hidden;
    transition: max-height 500ms var(--ease-spring), opacity 400ms var(--ease-smooth);
    max-height: 0;
    opacity: 0;
}
.vh-faq__answer.is-open {
    max-height: 600px;
    opacity: 1;
}

.vh-faq__answer-inner {
    padding-bottom: var(--space-6);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ============================================================
   14. FINAL CTA — Split Layout + WhatsApp Form
   ============================================================ */

/* ── Section shell: 50/50 split ────────────────────────────── */
.vh-final-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    overflow: hidden;
}

/* ── Visual (left half) ─────────────────────────────────────── */
.vh-final-cta__visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.vh-final-cta__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 8s ease-in-out;
}
.vh-final-cta:hover .vh-final-cta__visual-img {
    transform: scale(1.04);
}

.vh-final-cta__visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #2D5016 0%, #17231A 100%);
}

/* Gradient overlay: darkens bottom + right edge */
.vh-final-cta__visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  transparent 55%, var(--color-cream) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(23,35,26,0.65) 100%);
    pointer-events: none;
}

/* Floating badge on the photo */
.vh-final-cta__visual-badge {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-cream);
    background: rgba(23,35,26,0.72);
    border: 1px solid rgba(200,169,110,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.55em 1.1em;
    border-radius: var(--radius-pill);
}

.vh-final-cta__visual-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(37,211,102,0.7);
    animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.4); }
}

/* ── Panel (right half) ─────────────────────────────────────── */
.vh-final-cta__panel {
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
}

.vh-final-cta__panel-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    width: 100%;
    max-width: 520px;
}

/* Eyebrow */
.vh-final-cta__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.vh-final-cta__eyebrow-line {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.7;
}

/* Headline */
.vh-final-cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--color-black);
}

/* Subline */
.vh-final-cta__subline {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 40ch;
    margin-top: calc(-1 * var(--space-2));
}

/* ── Form ───────────────────────────────────────────────────── */
.vh-cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.vh-cta-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.vh-cta-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.vh-cta-form__field--full {
    grid-column: 1 / -1; /* full width */
}

.vh-cta-form__label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.vh-cta-form__optional {
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0;
    text-transform: none;
}

.vh-cta-form__input {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75em 1em;
    outline: none;
    transition:
        border-color var(--trans-base),
        box-shadow   var(--trans-base);
    -webkit-appearance: none;
    appearance: none;
}

.vh-cta-form__input::placeholder {
    color: rgba(107,107,90,0.45);
}

.vh-cta-form__input:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(45,80,22,0.10);
}

.vh-cta-form__input.is-error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

.vh-cta-form__error-msg {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: #c0392b;
    margin-top: var(--space-1);
    display: block;
    animation: errorFadeIn 200ms var(--ease-smooth) both;
}

@keyframes errorFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vh-cta-form__textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.65;
}

/* Privacy hint */
.vh-cta-form__hint {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    line-height: 1.5;
}

.vh-cta-form__hint svg {
    flex-shrink: 0;
    color: var(--color-green);
    opacity: 0.7;
}

/* Submit */
.vh-cta-form__submit {
    align-self: flex-start;
    font-size: var(--text-sm);
    padding: 0.95em 2.4em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
    .vh-final-cta {
        grid-template-columns: 1fr;
    }
    .vh-final-cta__visual {
        min-height: 300px;
        max-height: 380px;
    }
    .vh-final-cta__visual-overlay {
        background:
            linear-gradient(to bottom, transparent 50%, rgba(23,35,26,0.55) 100%);
    }
    .vh-final-cta__panel {
        padding: clamp(2.5rem, 6vw, 4rem) var(--container-pad);
    }
    .vh-cta-form__grid {
        grid-template-columns: 1fr;
    }
    .vh-cta-form__submit {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.vh-footer {
    background-color: var(--color-black);
    color: rgba(245,242,236,0.65);
    padding-top: var(--space-20);
}

.vh-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vh-footer__logo img  { filter: brightness(10); height: 36px; width: auto; }
.vh-footer__logo-text {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-cream);
}

.vh-footer__tagline {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(245,242,236,0.45);
    max-width: 28ch;
}

.vh-footer__col-title {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-5);
}

.vh-footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.vh-footer__links a {
    font-size: var(--text-sm);
    color: rgba(245,242,236,0.55);
    transition: color var(--trans-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}
.vh-footer__links a:hover { color: var(--color-cream); }

.vh-footer__instagram {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(245,242,236,0.65);
    font-size: var(--text-sm);
    transition: color var(--trans-fast);
}
.vh-footer__instagram:hover { color: var(--color-gold); }

.vh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-block: var(--space-6);
}
.vh-footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}
.vh-footer__bottom p { font-size: var(--text-xs); color: rgba(245,242,236,0.3); }

/* ============================================================
   16. SCROLL ANIMATIONS (manual AOS)
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms var(--ease-smooth), transform 700ms var(--ease-smooth);
}
[data-aos].is-visible { opacity: 1; transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].is-visible { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].is-visible { transform: translateX(0); }

/* ============================================================
   17. RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
    .vh-navbar__nav  { display: none; }
    .vh-navbar__cta  { display: none; }
    .vh-navbar__hamburger { display: flex; }

    .vh-hero {
        grid-template-columns: 1fr;
        grid-template-rows: 56vw auto;
        min-height: auto;
    }
    .vh-hero__image-wrap { min-height: 56vw; }
    .vh-hero__image-overlay { background: linear-gradient(to bottom, transparent 50%, var(--color-cream)); }
    .vh-hero__content {
        padding: var(--space-10) var(--container-pad) var(--space-14);
    }
    .vh-hero__content-inner { max-width: 100%; }
    .vh-hero__scroll-cue { display: none; }

    /* Collection — tablet: stack header */
    .vh-collection__header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-6);
    }
    .vh-collection__header-right {
        max-width: 100%;
        width: 100%;
    }
    .vh-collection__controls { margin-left: auto; }

    /* .vh-process grid responsive rules live within the section block above */

    .vh-why__inner { grid-template-columns: 1fr; gap: var(--space-12); }

    .vh-testimonials__grid { grid-template-columns: repeat(2, 1fr); }

    .vh-portfolio__grid { columns: 2; }
}

/* ============================================================
   18. RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
    .vh-hero { grid-template-rows: 72vw auto; }
    .vh-hero__image-wrap { min-height: 72vw; }
    .vh-hero__ctas { flex-direction: column; }
    .vh-hero__ctas .vh-btn { width: 100%; justify-content: center; }

    /* Collection — mobile */
    .vh-collection__header-split { gap: var(--space-5); padding-bottom: var(--space-6); }
    .vh-collection__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .vh-collection__header-right { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
    .vh-collection__controls { flex-direction: row; }
    .vh-collection__rail { grid-auto-columns: min(256px, 72vw); }
    .vh-collection__footer-inner { flex-direction: column; gap: var(--space-5); }
    .vh-collection__footer-inner .vh-btn { width: 100%; justify-content: center; }

    /* .vh-process grid mobile rules live within the section block above */

    .vh-portfolio__grid { columns: 1; }

    .vh-testimonials__grid { grid-template-columns: 1fr; }

    .vh-final-cta { padding-block: var(--space-20); }
    .vh-final-cta__ctas { flex-direction: column; width: 100%; }
    .vh-final-cta__ctas .vh-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   19. FOOTER — Editorial Dark Strip
   ============================================================ */

/* ── Shell ──────────────────────────────────────────────────── */
.vh-footer {
    background-color: #182318;        /* deep forest, alinha com Process */
    color: var(--color-cream);
    position: relative;
}

/* ══════════════════════════════════════════════════════════════
   19a. INSTAGRAM GALLERY STRIP
   ══════════════════════════════════════════════════════════════ */
.vh-footer__instagram-section {
    padding-block: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(200,169,110,0.12);
}

/* "Siga no Instagram" heading */
.vh-footer__insta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-cream);
    font-style: italic;
}

.vh-footer__insta-header svg {
    flex-shrink: 0;
    color: var(--color-gold);
    opacity: 0.85;
}

/* 6-photo grid */
.vh-footer__gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(6px, 1vw, 10px);
    padding-inline: var(--container-pad);
    max-width: var(--max-width);
    margin-inline: auto;
}

/* Individual photo */
.vh-footer__gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    display: block;
    flex-shrink: 0;
}

.vh-footer__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 600ms var(--ease-smooth);
}

.vh-footer__gallery-item:hover img {
    transform: scale(1.08);
}

/* Hover overlay */
.vh-footer__gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,35,24,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    opacity: 0;
    transition: opacity 300ms var(--ease-smooth);
    border-radius: var(--radius-md);
}
.vh-footer__gallery-item:hover .vh-footer__gallery-overlay {
    opacity: 1;
}

/* Placeholder quando não há imagens */
.vh-footer__gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(45,80,22,0.18) 0%, rgba(23,35,26,0.35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background 300ms var(--ease-smooth);
}
.vh-footer__gallery-item--placeholder:hover .vh-footer__gallery-placeholder {
    background: linear-gradient(160deg, rgba(45,80,22,0.30) 0%, rgba(23,35,26,0.50) 100%);
}

/* ══════════════════════════════════════════════════════════════
   19b. NAV BAR (links + social icons)
   ══════════════════════════════════════════════════════════════ */
.vh-footer__nav-bar {
    border-bottom: 1px solid rgba(200,169,110,0.12);
    padding-block: clamp(1rem, 2vw, 1.5rem);
}

.vh-footer__nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}

/* Links de navegação */
.vh-footer__nav {
    display: flex;
    align-items: center;
    gap: clamp(var(--space-4), 3vw, var(--space-8));
    flex-wrap: wrap;
}

.vh-footer__nav-link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.55);
    text-decoration: none;
    transition: color var(--trans-fast);
    white-space: nowrap;
}

.vh-footer__nav-link:hover {
    color: var(--color-cream);
}

.vh-footer__nav-link--active {
    color: var(--color-gold);
}

/* Ícones sociais */
.vh-footer__social-icons {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.vh-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(245,242,236,0.18);
    color: rgba(245,242,236,0.6);
    text-decoration: none;
    transition:
        border-color var(--trans-base),
        color var(--trans-base),
        background var(--trans-base),
        transform 200ms var(--ease-spring);
}

.vh-footer__social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(200,169,110,0.08);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   19c. BOTTOM COPYRIGHT BAR
   ══════════════════════════════════════════════════════════════ */
.vh-footer__bottom {
    padding-block: clamp(1rem, 1.8vw, 1.4rem);
}

.vh-footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vh-footer__bottom p {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: rgba(245,242,236,0.38);
    line-height: 1.6;
}

.vh-footer__bottom strong {
    color: rgba(245,242,236,0.62);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   19d. SCROLL TO TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
.vh-footer__scroll-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: 500;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(200,169,110,0.40), 0 2px 6px rgba(0,0,0,0.20);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    pointer-events: none;
    transition:
        opacity 300ms var(--ease-smooth),
        transform 300ms var(--ease-spring),
        background var(--trans-base),
        box-shadow var(--trans-base);
}

.vh-footer__scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.vh-footer__scroll-top:hover {
    background: var(--color-gold-light);
    box-shadow: 0 8px 28px rgba(200,169,110,0.55), 0 2px 8px rgba(0,0,0,0.18);
    transform: translateY(-3px) scale(1);
}

.vh-footer__scroll-top:active {
    transform: translateY(-1px) scale(0.97);
}

/* ══════════════════════════════════════════════════════════════
   19e. RESPONSIVE — FOOTER
   ══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .vh-footer__gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Show only first 3 when 3-cols (hide 4-6) */
    .vh-footer__gallery-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 640px) {
    .vh-footer__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .vh-footer__gallery-item:nth-child(n+3) {
        display: none;
    }

    .vh-footer__nav-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-5);
    }

    .vh-footer__nav {
        gap: var(--space-4);
    }

    .vh-footer__scroll-top {
        bottom: var(--space-5);
        right: var(--space-5);
        width: 42px;
        height: 42px;
    }
}

/* ============================================================
   20. PREMIUM REVEAL UTILITIES
   ============================================================ */
.reveal-mask {
    position: relative;
    overflow: hidden;
}

.reveal-mask::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-gold);
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.reveal-mask.is-visible::after {
    transform: scaleY(0);
}

.reveal-mask.reveal-mask--green::after {
    background-color: var(--color-green);
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
