:root {
    /* Identidade visual Hyanne & João Paulo */
    --terracota: #d58f46;
    --terracota-dark: #a8672c;
    --mostarda: #e6bc3a;
    --areia: #ead7b1;
    --areia-dark: #ddc396;
    --espresso: #2b1c10;

    --blush: var(--areia);
    --blush-dark: var(--areia-dark);
    --gold: var(--terracota);
    --gold-dark: var(--terracota-dark);
    --ink: #1a1a1a;
    --ink-soft: #6e5d4a;
    --white: #ffffff;
    --green: #3f7d5c;
    --danger: #a8402c;
    --radius: 4px;
    --shadow: 0 10px 30px rgba(43, 28, 16, 0.08);
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--blush) 0%, var(--white) 320px);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

/* ---------- Header flutuante ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    display: flex;
    justify-content: center;
    padding: 18px 20px 0;
    pointer-events: none;
}

.site-header-inner {
    pointer-events: auto;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px 12px 24px;
    background: rgba(43, 28, 16, 0.6);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: background 0.4s ease, padding 0.4s ease;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: var(--mostarda);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile {
    position: fixed;
    inset: 0;
    background: rgba(43, 28, 16, 0.72);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mobile-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.nav-mobile-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-mobile-links a.active,
.nav-mobile-links a:hover {
    color: var(--white);
}

@media (max-width: 860px) {
    .site-nav {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

.hero {
    text-align: center;
    padding: 130px 24px 40px;
}

.hero-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    font-size: 13px;
    color: var(--gold-dark);
    margin: 0 0 12px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--ink);
}

.hero h1 em {
    font-weight: 400;
    color: var(--gold);
}

.hero-text {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.gift-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.gift-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.gift-card:hover {
    transform: translateY(-4px);
}

.gift-card.is-gifted {
    opacity: 0.75;
}

.gift-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--blush-dark);
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gift-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--gold);
    background: var(--blush);
}

.gift-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.gift-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.gift-body h2 {
    font-size: 20px;
}

.gift-desc {
    color: var(--ink-soft);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.gift-price {
    font-weight: 600;
    color: var(--gold-dark);
    margin: 4px 0 0;
    font-size: 17px;
}

.gift-btn {
    margin-top: auto;
    align-self: flex-start;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.gift-btn:hover {
    background: var(--gold-dark);
}

.gift-btn-disabled {
    background: var(--blush-dark);
    color: var(--ink-soft);
    cursor: default;
}

.site-footer {
    text-align: center;
    padding: 30px 24px 50px;
    color: var(--ink-soft);
    font-size: 14px;
}

/* ---------- RSVP (Confirmação de Presença) ---------- */

.rsvp-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 130px 24px 80px;
}

.rsvp-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
}

.rsvp-box h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.rsvp-search {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rsvp-search label {
    font-size: 13px;
    color: var(--ink-soft);
}

.rsvp-results {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rsvp-results a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--blush);
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
}

.rsvp-results a:hover {
    background: var(--blush-dark);
}

.rsvp-empty {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 14px;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.rsvp-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-soft);
}

.rsvp-fieldset {
    border: 1px solid var(--blush-dark);
    border-radius: 10px;
    padding: 12px 14px;
}

.rsvp-fieldset legend {
    font-size: 13px;
    color: var(--ink-soft);
    padding: 0 4px;
}

.rsvp-fieldset-when {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 10px;
    color: var(--ink-soft);
    opacity: 0.7;
}

.rsvp-info {
    margin: 6px 0 12px;
}

.rsvp-info summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--ink-soft);
    color: var(--ink-soft);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.rsvp-info summary::marker {
    content: '';
}

.rsvp-info summary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.rsvp-info[open] summary {
    background: var(--ink-soft);
    border-color: var(--ink-soft);
    color: var(--white);
}

.rsvp-info-text {
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 10px 12px;
    background: var(--blush);
    border-left: 2px solid var(--gold);
}

.rsvp-intro {
    color: var(--ink-soft);
    font-size: 14px;
    margin: -4px 0 20px;
}

.rsvp-summary-list {
    list-style: none;
    margin: 20px 0 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.rsvp-summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--blush);
    border: 1px solid var(--blush-dark);
}

.rsvp-summary-event {
    font-size: 14px;
    color: var(--ink);
}

.rsvp-summary-event small {
    display: block;
    color: var(--ink-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.rsvp-summary-answer {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
    padding: 5px 12px;
    white-space: nowrap;
}

.rsvp-summary-answer--sim {
    background: var(--green);
    color: var(--white);
}

.rsvp-summary-answer--nao {
    background: var(--blush-dark);
    color: var(--ink-soft);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
    padding: 6px 0;
}

.rsvp-thanks {
    text-align: center;
}

.rsvp-thanks .gift-btn {
    display: inline-block;
    margin-top: 18px;
}

.rsvp-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.rsvp-summary-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px 18px;
    font-size: 13px;
    color: var(--ink-soft);
}

.rsvp-summary-item strong {
    display: block;
    font-size: 20px;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
}

.rsvp-summary-sub {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

.admin-subnav {
    display: flex;
    gap: 26px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--blush-dark);
}

.admin-subnav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.admin-subnav a.active,
.admin-subnav a:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

/* ---------- Admin ---------- */

.admin-body {
    background: linear-gradient(180deg, var(--blush) 0%, var(--white) 420px);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
}

.admin-login-box {
    max-width: 380px;
    margin: 120px auto;
    background: var(--white);
    padding: 44px 38px;
    border: 1px solid var(--blush-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.admin-login-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25em;
    font-size: 11px;
    color: var(--ink-soft);
    margin: 0 0 14px;
}

.admin-login-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 28px;
}

.admin-login-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.admin-login-box label {
    font-size: 13px;
    color: var(--ink-soft);
}

.admin-error {
    color: var(--danger);
    font-size: 14px;
    margin-bottom: 12px;
}

.admin-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.admin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.admin-wrap h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.admin-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: var(--ink-soft);
    margin: 0 0 6px;
}

.admin-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    margin-left: 14px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.admin-link:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.admin-back {
    display: inline-block;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 22px;
    transition: color 0.25s ease;
}

.admin-back:hover {
    color: var(--ink);
}

.admin-btn {
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
    display: inline-block;
}

.admin-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

input, textarea, select, button {
    font-family: inherit;
}

input[type="text"], input[type="url"], input[type="number"], input[type="password"], textarea, select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--blush-dark);
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--blush-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.admin-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--white);
}

.admin-table th {
    padding: 13px 14px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    background: var(--blush);
    border-bottom: 1px solid var(--blush-dark);
}

.admin-table td {
    padding: 14px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--blush);
}

.admin-table tbody tr {
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: var(--blush);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.admin-thumb-empty {
    color: var(--ink-soft);
}

.admin-thumb-preview {
    max-width: 160px;
    margin-top: 8px;
}

.admin-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--ink-soft);
    font-size: 14px;
    background: var(--white);
    border: 1px dashed var(--blush-dark);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.message-card {
    background: var(--white);
    border: 1px solid var(--blush-dark);
    padding: 20px 22px;
}

.message-card.is-unread {
    border-left: 3px solid var(--gold);
}

.message-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.message-card-head strong {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--ink);
}

.message-contact {
    margin-left: 10px;
    font-size: 13px;
    color: var(--ink-soft);
}

.message-date {
    font-size: 12px;
    color: var(--ink-soft);
}

.message-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 12px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #f0ebe4;
    color: var(--ink-soft);
}

.status-available {
    background: #eaf3ee;
    color: var(--green);
}

.status-gifted {
    background: var(--blush-dark);
    color: var(--ink-soft);
}

.admin-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.inline-form {
    display: inline;
}

.link-btn {
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.25s ease;
}

.link-btn:hover {
    opacity: 0.6;
}

.link-btn-danger {
    color: var(--danger);
}

.admin-form {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--blush-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
    margin-top: 20px;
}

.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-soft);
}

/* ---------- Scroll reveal ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Se o JavaScript não rodar, o conteúdo aparece direto (sem animação) em vez de ficar invisível */
.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* ---------- Preloader ---------- */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    /* some sozinho mesmo se o JS não carregar, para nunca travar a página */
    animation: preloaderAutoHide 0.01s linear 3.2s forwards;
}

@keyframes preloaderAutoHide {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-names {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 5vw, 40px);
    letter-spacing: 0.08em;
    color: var(--ink);
    margin: 0;
    opacity: 0;
    animation: preloaderFade 1.1s ease forwards 0.2s;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: var(--gold-dark);
    margin: 20px auto 0;
    animation: preloaderLine 0.9s ease forwards 1s;
}

@keyframes preloaderFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLine {
    from { width: 0; }
    to { width: 100px; }
}

/* ---------- Hero de tela cheia (página inicial) ---------- */

.hero-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    background: var(--espresso);
    color: var(--white);
}

.hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 28, 16, 0.6) 0%, rgba(43, 28, 16, 0.4) 45%, rgba(43, 28, 16, 0.7) 100%);
    z-index: 1;
}

.hero-full-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: grayscale(0.55) sepia(0.35) saturate(1.5) contrast(1.05);
    z-index: 0;
}

.hero-full > *:not(.hero-full-bg) {
    position: relative;
    z-index: 2;
}

.hero-full-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 18px;
    opacity: 0;
    animation: preloaderFade 1s ease forwards 0.3s;
}

.hero-full-names {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 9vw, 92px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    animation: preloaderFade 1.1s ease forwards 0.5s;
}

.hero-full-names em,
.preloader-names em {
    font-weight: 400;
    color: var(--mostarda);
}

.hero-divider {
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin: 30px auto;
    animation: preloaderLine 1s ease forwards 1.2s;
}

.hero-full-date {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    opacity: 0;
    animation: preloaderFade 1s ease forwards 1.4s;
}

.hero-countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 46px;
    opacity: 0;
    animation: preloaderFade 1s ease forwards 1.6s;
}

.hero-countdown > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.hero-countdown span {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--white);
}

.hero-countdown label {
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

@media (max-width: 380px) {
    .hero-countdown {
        gap: 18px;
    }
    .hero-countdown > div {
        min-width: 40px;
    }
    .hero-countdown span {
        font-size: 24px;
    }
}

.countdown-done {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ---------- Títulos de seção (compartilhado) ---------- */

.section-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25em;
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0 0 10px;
}

.gallery h2,
.weekend-intro h2,
.prose-section h2,
.event-block h2,
.featured-wrap h2,
.album-wrap h2 {
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
}

.featured-wrap .section-kicker,
.album-wrap .section-kicker {
    text-align: center;
}

.featured-wrap h2,
.album-wrap h2 {
    margin-bottom: 40px;
}

/* ---------- Boas-vindas / Nossa história (texto corrido) ---------- */

.prose-section {
    padding: 100px 24px;
    background: var(--white);
    text-align: center;
}

.prose-section.prose-alt {
    background: var(--blush);
}

.prose-inner {
    max-width: 640px;
    margin: 0 auto;
}

.prose-section h2 {
    margin: 0 0 40px;
    line-height: 1.4;
}

.prose-inner p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.85;
    text-align: left;
    margin: 0 0 20px;
}

.prose-signature {
    margin-top: 36px !important;
    text-align: center !important;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--ink) !important;
    line-height: 1.6 !important;
}

/* ---------- Programação do fim de semana ---------- */

.weekend-intro {
    padding: 90px 24px 10px;
    text-align: center;
    background: var(--white);
}

.weekend-intro h2 {
    margin: 0;
}

.event-block {
    padding: 70px 24px 100px;
    background: var(--white);
    text-align: center;
    scroll-margin-top: 110px;
}

.event-block.event-alt {
    background: var(--blush);
}

.event-inner {
    max-width: 680px;
    margin: 0 auto;
}

.event-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0 0 12px;
}

.event-block h2 {
    margin: 0 0 34px;
}

.event-text p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.85;
    text-align: left;
    margin: 0 0 18px;
}

.event-location {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--blush-dark);
    padding: 30px 30px 34px;
    margin-top: 38px;
}

.event-block.event-alt .event-location {
    background: var(--white);
}

.event-location-label {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.15em;
    font-size: 11px;
    color: var(--ink-soft);
    margin: 0 0 8px;
}

.event-location h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--ink);
}

.event-address {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.event-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 14px;
    color: var(--ink);
    margin: 0 0 22px;
}

.event-info-row strong {
    font-weight: 600;
}

.event-map {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    overflow: hidden;
    background: var(--blush-dark);
}

.event-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(1.05);
}

.map-actions {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.map-actions a {
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.map-actions a:hover {
    opacity: 0.6;
}

/* ---------- Galeria ---------- */

.gallery {
    padding: 100px 24px 110px;
    text-align: center;
    background: var(--blush);
}

.gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--blush-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-empty {
    color: var(--ink-soft);
    font-size: 15px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10000;
    padding: 30px;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--white);
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
}

/* ---------- CTA (pilares: presentes + confirmação) ---------- */

.cta-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px 110px;
    gap: 24px;
}

.cta-card {
    background: var(--espresso);
    color: var(--white);
    text-decoration: none;
    padding: 54px 30px;
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-6px);
    background: #1a0f08;
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 10px;
}

.cta-card p {
    font-size: 14px;
    color: var(--areia);
    margin: 0;
}

/* ---------- Tela de confirmação (busca em fundo escuro) ---------- */

body.rsvp-dark {
    background: var(--espresso);
}

.rsvp-stage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 24px 40px;
    text-align: center;
}

.rsvp-stage-inner {
    max-width: 420px;
    width: 100%;
    animation: preloaderFade 1s ease forwards;
}

.rsvp-stage-kicker {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px;
}

.rsvp-stage-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 38px);
    color: var(--white);
    margin: 0 0 36px;
}

.rsvp-stage-form {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 12px;
}

.rsvp-stage-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: 0.02em;
}

.rsvp-stage-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.rsvp-stage-form button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rsvp-stage-form button:hover {
    transform: translateX(4px);
}

.rsvp-stage-error {
    color: #e2a5a5;
    margin-top: 20px;
    font-size: 14px;
}

.rsvp-stage-empty {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.rsvp-stage-results {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rsvp-stage-results a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-size: 15px;
}

.rsvp-stage-results a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.rsvp-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}

.rsvp-stage-back {
    display: inline-block;
    margin-top: 44px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rsvp-stage-back:hover {
    color: var(--white);
}

/* ---------- Cabeçalho de página (Nossa História / Dicas / Álbum) ---------- */

.page-hero {
    text-align: center;
    padding: 140px 24px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.35;
}

.page-hero h1 em {
    font-weight: 400;
    color: var(--gold);
}

.page-hero-text {
    max-width: 520px;
    margin: 20px auto 0;
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 15px;
}

.page-hero-text a {
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dark);
}

.page-hero-text a:hover {
    opacity: 0.7;
}

/* ---------- Navegação rápida entre etapas (Programação) ---------- */

.steps-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.steps-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--blush-dark);
    text-decoration: none;
    color: var(--ink);
    font-size: 13px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.steps-nav a:hover {
    background: var(--blush);
    border-color: var(--gold);
}

.steps-nav-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-dark);
    font-size: 15px;
}

/* ---------- Foto dentro do texto (Nossa História) ---------- */

.story-photo {
    max-width: 640px;
    margin: 50px auto;
    padding: 0 24px;
    text-align: center;
}

.story-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.15);
}

.story-photo figcaption {
    margin-top: 14px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
}

/* ---------- O Pedido ---------- */

.proposal-section {
    padding: 20px 24px 110px;
    text-align: center;
    background: var(--white);
}

.proposal-section h2 {
    margin: 0 0 46px;
}

.proposal-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    text-align: left;
}

.proposal-main img,
.proposal-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.proposal-main {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.proposal-side {
    display: flex;
    flex-direction: column;
}

.proposal-side img {
    aspect-ratio: 4 / 5;
}

.proposal-side figcaption {
    margin-top: 14px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
    text-align: center;
}

@media (max-width: 680px) {
    .proposal-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Foto de cada local (dentro do card em Dicas) ---------- */

.event-location .event-photo {
    margin: -30px -30px 26px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 320px;
    overflow: hidden;
}

.event-photo img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
    filter: grayscale(0.2);
}

/* ---------- Dicas práticas ---------- */

.tips-section {
    padding: 90px 24px 110px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tips-section h2 {
    margin: 0 0 50px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    text-align: left;
}

.tip-card {
    background: var(--blush);
    padding: 30px 26px;
    border: 1px solid var(--blush-dark);
}

.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--ink);
}

.tip-card p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.tip-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
}

.tip-link:hover {
    opacity: 0.6;
}

/* ---------- Onde ficar / onde comer ---------- */

.places-section {
    padding: 20px 24px 110px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    scroll-margin-top: 120px;
}

.places-section h2 {
    margin: 0 0 12px;
}

.places-section > .page-hero-text {
    margin: 0 auto 50px;
}

.places-block {
    text-align: left;
    margin-top: 44px;
}

.places-block:first-of-type {
    margin-top: 0;
}

.places-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    color: var(--gold-dark);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--blush-dark);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.place-card {
    background: var(--white);
    border: 1px solid var(--blush-dark);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.place-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--ink);
}

.place-note {
    font-size: 12px;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: -6px;
}

.place-card .map-actions {
    margin-top: 4px;
}

.place-card .map-actions a {
    font-size: 11.5px;
}

/* ---------- Contato ---------- */

.contact-section {
    padding: 30px 24px 120px;
    display: flex;
    justify-content: center;
}

.contact-box {
    max-width: 480px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--blush-dark);
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-box > p {
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

.contact-whatsapp-btn {
    display: inline-block;
    text-decoration: none;
}

.contact-alt-link {
    display: inline-block;
    margin-top: 20px;
}

/* ---------- Teaser "Nossa História" (página inicial) ---------- */

.story-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--white);
}

.story-teaser-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-teaser-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(0.15);
    display: block;
}

.story-teaser-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
}

.story-teaser-text h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin: 6px 0 18px;
}

.story-teaser-text p {
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 15px;
    margin: 0 0 20px;
}

@media (max-width: 760px) {
    .story-teaser {
        grid-template-columns: 1fr;
    }
    .story-teaser-media {
        aspect-ratio: 16 / 10;
    }
    .story-teaser-text {
        padding: 44px 26px;
    }
}

/* ---------- Teaser "Programação" (faixa terracota) ---------- */

.steps-teaser {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
}

.steps-teaser .section-kicker {
    color: rgba(255, 255, 255, 0.8);
}

.steps-teaser h2 {
    color: var(--white);
    margin: 0 0 50px;
}

.steps-teaser h2 em {
    font-weight: 400;
    color: var(--mostarda);
}

.steps-teaser-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.steps-teaser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.steps-teaser-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.steps-teaser-n {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 30px;
    color: var(--mostarda);
}

.steps-teaser-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--white);
}

.steps-teaser-when {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.steps-teaser-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.6) !important;
}

.steps-teaser-link:hover {
    opacity: 0.75;
}

/* ---------- Teaser "Contato" (página inicial) ---------- */

.contact-teaser {
    text-align: center;
    padding: 90px 24px;
    background: var(--white);
}

.contact-teaser h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 14px;
}

.contact-teaser p {
    color: var(--ink-soft);
    margin: 0 0 26px;
}

/* ---------- Teaser de fotos (página inicial) ---------- */

.teaser-section {
    padding: 30px 24px 100px;
    text-align: center;
    background: var(--blush);
}

.teaser-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.teaser-item {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.teaser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
    filter: grayscale(1);
    transform: scale(1.02);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.teaser-item:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}

.teaser-link {
    display: inline-block;
    margin-top: 26px;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
}

.teaser-link:hover {
    opacity: 0.6;
}

@media (max-width: 560px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Fotos em destaque (bento) ---------- */

.featured-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    grid-auto-flow: dense;
    gap: 14px;
}

.featured-item {
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--blush-dark);
    box-shadow: 0 14px 30px rgba(43, 28, 16, 0.16);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, opacity 0.5s ease;
}

.featured-item:hover img,
.featured-item:focus-within img {
    transform: scale(1.06);
}

.featured-item img.is-fading {
    opacity: 0;
}

.featured-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-item--wide {
    grid-column: span 2;
}

.featured-item--tall {
    grid-row: span 2;
}

@media (max-width: 780px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
}

@media (max-width: 480px) {
    .featured-wrap {
        padding: 40px 16px 10px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .featured-item--large,
    .featured-item--wide,
    .featured-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ---------- Álbum de fotos (mosaico interativo) ---------- */

.album-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 110px;
}

.album-grid {
    columns: 4 280px;
    column-gap: 14px;
}

.album-item {
    aspect-ratio: auto;
    break-inside: avoid;
    margin-bottom: 14px;
    cursor: pointer;
    background: var(--blush-dark);
}

.album-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) brightness(0.92);
    transform: scale(1.01);
    transition: filter 1.1s ease, transform 1.1s ease;
}

.album-item:hover img,
.album-item:focus-within img,
.album-item.auto-color img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.03);
}

@media (max-width: 680px) {
    .album-grid {
        columns: 2 160px;
        column-gap: 10px;
    }
    .album-item {
        margin-bottom: 10px;
    }
}

/* ---------- Player de música de fundo ---------- */

.audio-player {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 500;
}

.audio-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--espresso);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.audio-toggle:hover {
    transform: scale(1.08);
}

.audio-toggle.is-disabled {
    background: var(--ink-soft);
    opacity: 0.45;
    cursor: not-allowed;
}

.audio-toggle.is-disabled:hover {
    transform: none;
}
