:root {
    --bg: #0f0f12;
    --card: #15151b;
    --ink: #f4f4f6;
    --muted: #b9b9c2;
    --line: rgba(255,255,255,.12);
    --accent: #b48cff; /* violeta */
    --accent2: #ffb3d9; /* rosa suave */
    --radius: 18px;
    --max: 820px;
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 600px at 50% -10%, rgba(180,140,255,.18), transparent 65%), radial-gradient(900px 500px at 20% 20%, rgba(255,179,217,.12), transparent 60%), var(--bg);
    color: var(--ink);
    line-height: 1.35;
}

a {
    color: inherit
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px 18px 60px
}

.center {
    text-align: center
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin: 22px auto;
    width: min(520px, 92%);
}

/* Hero */
.hero {
    padding: 28px 0 8px
}

.kicker {
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 10px;
}

.title {
    font-family: "Cormorant Garamond", serif;
    font-size: 54px;
    line-height: 1;
    margin: 0;
    font-weight: 600;
}

.subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    margin: 10px 0 0;
    color: var(--muted);
}

/* Countdown */
.countdown {
    margin: 22px auto 0;
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cdBox {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 10px;
    backdrop-filter: blur(6px);
}

.cdNum {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .02em;
}

.cdLbl {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Card sections */
.card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 16px;
    margin: 14px 0;
    overflow: hidden;
}

.h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 600;
}

.p {
    margin: 0;
    color: var(--muted);
    font-weight: 300
}

.strong {
    color: var(--ink);
    font-weight: 600
}

.tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(180,140,255,.12);
    border: 1px solid rgba(180,140,255,.28);
    color: #e9ddff;
    font-size: 12px;
    margin: 6px 0 0;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 12px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

    .gallery::-webkit-scrollbar {
        height: 10px
    }

    .gallery::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.12);
        border-radius: 999px
    }

.shot {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #111;
    position: relative;
}

    .shot img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
        filter: contrast(1.02)
    }

    .shot::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 90px;
        background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
        pointer-events: none;
    }

/* Two columns on desktop */
.grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

@media (min-width:720px) {
    .grid2 {
        grid-template-columns: 1fr 1fr
    }

    .shot {
        flex-basis: 48%
    }

        .shot img {
            height: 320px
        }
}

/* Buttons */
.btnRow {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 14px
}

.btn {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    color: var(--ink);
    padding: 11px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .06s ease, border-color .2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
        border-color: rgba(180,140,255,.55)
    }

.btnPrimary {
    background: linear-gradient(135deg, rgba(180,140,255,.24), rgba(255,179,217,.18));
    border-color: rgba(180,140,255,.55);
}

/* Modal (sobre virtual) */
.giftBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 2147483647;
}

.giftBox {
    width: min(520px, 100%);
    max-height: 85vh;
    overflow: auto;
    background: rgba(20,20,26,.96);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
}


/* Footer image */
.footerImg {
    margin-top: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
}

    .footerImg img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block
    }

.tiny {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px
}

.audioBtn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(20,20,26,.92);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .audioBtn:hover {
        transform: translateY(-1px);
    }
