/* ════════════════════════════════════════════════════════════
   RESET & VARIÁVEIS
════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Paleta principal */
    --cream:          #FAF7F2;
    --cream-dark:     #F3EDE4;
    --rose-pale:      #F5E4DC;
    --rose-light:     #E8C0B2;
    --rose-medium:    #CE8E84;
    --gold:           #C9A96E;
    --gold-light:     #E8D5A0;
    --gold-dark:      #A8854A;
    --bordeaux:       #6B2D3E;
    --bordeaux-dark:  #4A1E2B;
    --text-dark:      #3A2A2E;
    --text-medium:    #6B5458;
    --text-muted:     #9E8A8E;

    /* Tipografia */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Lato', system-ui, sans-serif;

    /* Utilitários */
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.4s var(--ease-soft);
    --shadow-sm:  0 2px 16px rgba(58, 42, 46, 0.07);
    --shadow-md:  0 6px 32px rgba(58, 42, 46, 0.13);
    --shadow-lg:  0 16px 56px rgba(58, 42, 46, 0.22);
    --radius:     10px;
    --max-w:      1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 20%, #F5DFDA 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 85% 85%, #EDD8A4 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 15% 75%, #EBC4B8 0%, transparent 55%),
        var(--cream);
}

/* Corações flutuantes */
.floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.heart-p {
    position: absolute;
    bottom: -30px;
    color: var(--rose-medium);
    opacity: 0;
    user-select: none;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0%   { transform: translateY(0) rotate(-5deg) scale(0.8); opacity: 0; }
    8%   { opacity: 0.35; }
    88%  { opacity: 0.12; }
    100% { transform: translateY(-105vh) rotate(12deg) scale(1.1); opacity: 0; }
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
    opacity: 0;
    animation: riseIn 1s 0.15s forwards;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(88px, 19vw, 168px);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: riseIn 1.1s 0.4s forwards;
    background: linear-gradient(148deg, var(--bordeaux-dark) 0%, var(--bordeaux) 45%, var(--rose-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-occasions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    opacity: 0;
    animation: riseIn 1s 0.7s forwards;
}

.occasion {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.occasion-icon { color: var(--rose-medium); }

.occasion-sep {
    color: var(--rose-light);
    font-size: 1.1rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 44px;
    opacity: 0;
    animation: riseIn 1s 0.95s forwards;
}

/* Cartão do contador */
.counter-card {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 169, 110, 0.22);
    border-radius: 20px;
    padding: 26px 28px 20px;
    margin: 0 auto 40px;
    max-width: 540px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: riseIn 1s 1.15s forwards;
}

.counter-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.counter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.counter-unit {
    text-align: center;
    min-width: 42px;
}

.c-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--bordeaux);
    line-height: 1;
}

.c-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

.c-sep {
    color: var(--rose-light);
    font-size: 1.1rem;
    margin-top: -4px;
    flex-shrink: 0;
}

.counter-since {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 14px;
}

/* Botão entrar */
.btn-enter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: linear-gradient(145deg, var(--bordeaux-dark), var(--bordeaux));
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: 0 4px 22px rgba(107, 45, 62, 0.38);
    opacity: 0;
    animation: riseIn 1s 1.45s forwards;
}

.btn-enter:hover,
.btn-enter:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(107, 45, 62, 0.48);
    background: linear-gradient(145deg, var(--bordeaux), var(--rose-medium));
    outline: none;
}

.btn-enter svg {
    animation: nudgeDown 2.2s ease-in-out infinite;
}

@keyframes nudgeDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* Ornamentos dos cantos */
.ornament {
    position: absolute;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.38;
    z-index: 3;
    pointer-events: none;
}
.ornament-tl { top: 22px; left: 22px; }
.ornament-tr { top: 22px; right: 22px; }
.ornament-bl { bottom: 22px; left: 22px; }
.ornament-br { bottom: 22px; right: 22px; }

/* ════════════════════════════════════════════════════════════
   NAV STICKY
════════════════════════════════════════════════════════════ */
#album-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    flex-wrap: wrap;
    padding-block: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-medium);
    text-decoration: none;
    padding: 4px 2px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--bordeaux);
    outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.nav-dot {
    color: var(--gold-light);
    font-size: 0.45rem;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SEÇÕES DE ÁLBUM
════════════════════════════════════════════════════════════ */
.album-section {
    padding: 72px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 8.5vw, 76px);
    font-weight: 300;
    color: var(--bordeaux);
    line-height: 0.95;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   CARROSSEL
════════════════════════════════════════════════════════════ */

/* Wrapper externo — reserva espaço para as setas nas laterais */
.carousel-wrap {
    position: relative;
    padding: 0 52px;
}

/* Janela que recorta o track */
.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

/* Track flexível — JS move com transform */
.photo-grid {
    display: flex;
    gap: 14px;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Cada foto — largura e altura definidas via JS */
.photo-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: #2A1A1E;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    outline-offset: 4px;
    aspect-ratio: 1 / 1;
}

.photo-item:hover,
.photo-item:focus-visible {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
    outline: 2px solid var(--gold);
    z-index: 2;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.65s var(--ease-soft), filter 0.4s;
    filter: brightness(0.97) saturate(0.93);
}

.photo-item:hover img,
.photo-item:focus-visible img {
    transform: scale(1.06);
    filter: brightness(1.01) saturate(1.05);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 20, 28, 0.65) 0%, transparent 52%);
    opacity: 0;
    transition: opacity 0.38s;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    border-radius: var(--radius);
}

.photo-item:hover .photo-overlay,
.photo-item:focus-visible .photo-overlay {
    opacity: 1;
}

.photo-caption-label {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-style: italic;
    color: rgba(250, 247, 242, 0.92);
    line-height: 1.35;
}

/* Setas do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.95);
    border: 1px solid rgba(201, 169, 110, 0.35);
    color: var(--bordeaux);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
}

.carousel-btn-prev {
    left: 4px;
}
.carousel-btn-prev:hover { transform: translateY(-50%) translateX(-2px); }

.carousel-btn-next {
    right: 4px;
}
.carousel-btn-next:hover { transform: translateY(-50%) translateX(2px); }

/* Seta desabilitada */
.carousel-btn[disabled] {
    opacity: 0.28;
    pointer-events: none;
}

/* Indicadores de posição (bolinhas) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.is-active {
    background: var(--bordeaux);
    transform: scale(1.3);
}

/* Estado vazio */
.grid-empty {
    text-align: center;
    padding: 56px 24px;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    border: 2px dashed var(--rose-light);
    border-radius: var(--radius);
    width: 100%;
}

/* ════════════════════════════════════════════════════════════
   CITAÇÕES ENTRE SEÇÕES
════════════════════════════════════════════════════════════ */
.quote-divider {
    text-align: center;
    padding: 32px 24px;
    max-width: 580px;
    margin: 0 auto;
}

.quote-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--rose-light);
    line-height: 0.4;
    margin-bottom: 14px;
    opacity: 0.7;
}

.quote-divider blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 3vw, 1.45rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   MENSAGEM PESSOAL
════════════════════════════════════════════════════════════ */
#mensagem {
    background: linear-gradient(150deg, var(--bordeaux-dark) 0%, #7A3348 60%, var(--bordeaux) 100%);
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
}

#mensagem::before {
    content: '❧';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    line-height: 1;
}

#mensagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(232, 192, 178, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.mensagem-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mensagem-ornament {
    display: block;
    font-size: 3.2rem;
    color: var(--gold);
    opacity: 0.65;
    margin-bottom: 22px;
}

.mensagem-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 9vw, 62px);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 42px;
    line-height: 1;
}

.mensagem-texto {
    text-align: left;
}

.mensagem-texto p {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.22rem);
    font-style: italic;
    color: rgba(250, 247, 242, 0.82);
    line-height: 1.85;
    margin-bottom: 22px;
}

.mensagem-texto p.mensagem-closing {
    color: var(--gold-light);
    font-size: clamp(1.05rem, 2.8vw, 1.3rem);
    font-weight: 600;
}

.mensagem-assinatura {
    margin-top: 52px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: rgba(250, 247, 242, 0.5);
    text-align: center;
    line-height: 1.5;
}

.assinatura-nome {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-top: 10px;
    letter-spacing: 0.04em;
}

.assinatura-heart {
    display: block;
    font-size: 1.6rem;
    color: var(--rose-light);
    margin-top: 10px;
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    30%       { transform: scale(1.22); }
    45%       { transform: scale(0.93); }
    60%       { transform: scale(1.12); }
}

/* ════════════════════════════════════════════════════════════
   RODAPÉ
════════════════════════════════════════════════════════════ */
#rodape {
    background: var(--text-dark);
    padding: 40px 24px;
    text-align: center;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.footer-since {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-heart {
    font-size: 1.15rem;
    color: var(--rose-medium);
}

/* ════════════════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════════════════ */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

#lightbox[hidden] { display: none; }

.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 10, 15, 0.96);
    cursor: pointer;
}

.lb-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 68px 36px;
    pointer-events: none;
}

/* Botões do lightbox */
.lb-btn {
    pointer-events: all;
    background: rgba(250, 247, 242, 0.1);
    border: 1px solid rgba(250, 247, 242, 0.18);
    border-radius: 50%;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}

.lb-btn:hover,
.lb-btn:focus-visible {
    background: rgba(250, 247, 242, 0.22);
    outline: none;
}

.lb-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
}

.lb-close:hover { transform: rotate(90deg); }

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { transform: translateY(-50%) translateX(2px); }

/* Imagem */
.lb-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

#lb-img {
    max-width: 100%;
    max-height: calc(100dvh - 170px);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    transition: opacity 0.25s;
    display: block;
}

.lb-info {
    pointer-events: none;
    text-align: center;
    margin-top: 14px;
}

.lb-caption {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(250, 247, 242, 0.78);
    max-width: 560px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.lb-counter {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(250, 247, 242, 0.3);
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   FADE-IN (Intersection Observer)
════════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.85s var(--ease-soft), transform 0.85s var(--ease-soft);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-item.fade-in {
    transform: translateY(14px) scale(0.985);
}

.photo-item.fade-in.visible {
    transform: translateY(0) scale(1);
}

/* ════════════════════════════════════════════════════════════
   KEYFRAMES GLOBAIS
════════════════════════════════════════════════════════════ */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — TABLET (≤ 900px)
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .album-section    { padding: 56px 20px; }
    .section-header   { margin-bottom: 36px; }

    /* Carrossel */
    .carousel-wrap  { padding: 0 44px; }
    .carousel-btn   { width: 38px; height: 38px; }

    /* Lightbox */
    .lb-stage { padding: 52px 56px 32px; }
    .lb-arrow { width: 42px; height: 42px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — MOBILE (≤ 640px)
════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    /* ── Hero ── */
    #hero {
        padding: 56px 20px 64px;
        min-height: 100svh;
        justify-content: center;
    }

    .hero-eyebrow { margin-bottom: 14px; }

    .hero-name {
        font-size: clamp(70px, 22vw, 100px);
        margin-bottom: 20px;
    }

    .hero-occasions {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
    }
    .occasion-sep { display: none; }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    /* Contador — grade 3×2 (anos/meses/dias | horas/min/seg) */
    .counter-card {
        padding: 18px 16px 14px;
        margin-bottom: 28px;
    }

    .counter-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 8px;
    }

    .c-sep     { display: none; }
    .c-val     { font-size: 1.6rem; }
    .counter-unit { min-width: unset; width: 100%; }

    /* ── Nav — scroll horizontal, nunca quebra linha ── */
    #album-nav {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    #album-nav::-webkit-scrollbar { display: none; }

    .nav-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 20px;
        padding: 0 20px;
        min-height: 44px;
    }

    .nav-dot  { display: none; }
    .nav-link { font-size: 0.65rem; white-space: nowrap; }

    /* ── Seções ── */
    .album-section  { padding: 44px 12px; }
    .section-header { margin-bottom: 28px; }

    /* ── Carrossel ── */
    .carousel-wrap { padding: 0 38px; }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    .carousel-btn svg { width: 16px; height: 16px; }

    /* ── Mensagem ── */
    #mensagem { padding: 60px 20px; }

    /* ── Lightbox ── */
    .lb-stage {
        padding: 52px 48px 24px;
    }

    .lb-arrow { width: 36px; height: 36px; }
    .lb-prev  { left: 4px; }
    .lb-next  { right: 4px; }

    #lb-img { max-height: calc(100dvh - 130px); }

    .lb-caption { font-size: 0.9rem; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — MOBILE PEQUENO (≤ 390px)
════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
    .hero-name { font-size: clamp(62px, 20vw, 80px); }

    .c-val { font-size: 1.35rem; }

    .carousel-wrap { padding: 0 30px; }
    .carousel-btn  { width: 28px; height: 28px; }
    .carousel-btn svg { width: 14px; height: 14px; }

    .nav-inner { gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   ACESSIBILIDADE — REDUÇÃO DE MOVIMENTO
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
