:root {
    --gold: #d4a373;
    --gold-light: #e8c9a8;
    --dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-strong: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow-glow: 0 0 40px rgba(212, 163, 115, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    background-color: #050505;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.scroll-locked {
    height: 100vh;
    overflow: hidden;
}

.hidden {
    display: none;
}

/* === UTILS === */
.btn-main, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-main {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a962 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* === INTRO VIDEO (Inicia após loading) === */
#intro-container {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: transparent;
    transition: opacity 0.8s ease;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === HERO SECTION === */
#hero-static {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s forwards 0.5s;
}

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

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-text-anim {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-date {
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--gold-light);
}

/* Timer */
.hero-countdown {
    opacity: 0;
    animation: fadeIn 1.5s forwards 1.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.timer-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.t-box {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.t-box span {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
}

.t-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Scroll Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === NAVBAR (Visível desde o início) === */
.liquid-navbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 4px;
    padding: 10px 15px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
    max-width: 95vw;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 10px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    background: var(--gold);
    color: #fff;
}

/* === SECTIONS === */
.scroll-section {
    position: relative;
    width: 100%;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 40px;
}

/* === JORNADA === */
.journey-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.photo-stack {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto;
}

.stacked-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 380px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    will-change: transform, opacity;
}

.stacked-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.card-caption h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 10px;
}

.hidden-btn {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    margin-top: 40px;
}

.hidden-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* === PROPOSAL (NARRATIVA) === */
.proposal-narrative {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.comic-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
}

.proposal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.vector-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
}

.ring-svg {
    width: 100%;
    height: 50%;
}

.narrative-text {
    position: absolute;
    bottom: 25%;
    width: 100%;
    text-align: center;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.narrative-h2 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px #000;
}

.video-reveal {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.video-reveal.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.video-wrapper {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #111;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* === PADRINHOS (Master Detail) === */
.padrinhos-container {
    width: 90%;
    max-width: 1300px;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.padrinhos-stage {
    display: flex;
    flex: 1;
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

/* Lista */
.p-list {
    flex: 1;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 5px;
}

.p-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.4;
    transform: scale(0.95);
    cursor: pointer;
}

.p-card.active-p {
    opacity: 1;
    transform: scale(1);
    background: var(--glass-strong);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.p-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.p-info {
    flex: 1;
}

.p-card h3 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.p-desc-hidden {
    display: none;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Painel de Detalhes (Melhorado) */
.p-details-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.p-details-panel.show {
    opacity: 1;
    transform: translateX(0);
}

.pd-content {
    background: linear-gradient(135deg, var(--glass-strong) 0%, rgba(212, 163, 115, 0.1) 100%);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    text-align: center;
    box-shadow: var(--shadow-glow);
    max-width: 400px;
}

.pd-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pd-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.pd-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.pd-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* === VENUE (Reestruturado) === */
.venue-split-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    gap: 40px;
    padding: 0 20px;
    height: 100%;
    align-items: flex-start;
}

.venue-left {
    flex: 0 0 400px;
    position: sticky;
    top: 100px;
}

.venue-right {
    flex: 1;
    overflow-y: auto;
    max-height: 80vh;
    padding: 20px 0;
}

.venue-card {
    background: var(--glass-strong);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.venue-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.venue-name {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin: 10px 0;
}

.venue-address {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.map-wrapper {
    margin: 20px 0;
}

.venue-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Timeline Animada (Mais compacta) */
.timeline-container {
    padding: 10px 0;
}

.timeline-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 2rem;
}

.timeline-item {
    padding: 20px;
    border-left: 3px solid var(--glass-border);
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
    opacity: 0.3;
    transform: translateX(20px);
    transition: all 0.5s ease;
    background: var(--glass);
    border-radius: 0 12px 12px 12px;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
    border-left-color: var(--gold);
    background: var(--glass-strong);
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 25px;
    width: 17px;
    height: 17px;
    background: #000;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.active::before {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.timeline-item h3 {
    color: var(--gold);
    margin: 5px 0;
    font-size: 1.1rem;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.t-date {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === RSVP E PRESENTES JUNTOS === */
.rsvp-gifts-container {
    width: 90%;
    max-width: 1400px;
}

.rsvp-gifts-split {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.rsvp-section, .gifts-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsvp-card, .gift-card {
    background: var(--glass-strong);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: var(--shadow-glow);
    width: 100%;
    max-width: 500px;
}

.rsvp-card {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d5 100%);
    color: #333;
}

.rsvp-card h2, .gift-card h2 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 2rem;
}

.rsvp-icon, .gift-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rsvp-deadline {
    color: #d4a373;
    font-weight: 700;
    margin: 15px 0;
    font-size: 1.1rem;
}

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

.input-field {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--gold);
}

.input-field::placeholder {
    color: #999;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.gift-note {
    color: #ccc;
    margin: 15px 0;
    font-size: 0.95rem;
}

.gift-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* === MODAIS === */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--glass-strong);
    border: 1px solid var(--gold);
    border-radius: 25px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.modal-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 2rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    color: var(--gold);
    transition: transform 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.1);
}

.close-modal:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(212, 163, 115, 0.2);
}

/* === GALERIA GRID === */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.grid-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
}

/* === LIGHTBOX === */
#lightbox .modal-content {
    background: transparent;
    border: none;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 163, 115, 0.3);
}

/* === ABAS DO MODAL DE DICAS === */
.tab-header {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    opacity: 0.5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    opacity: 0.8;
}

.tab-btn.active {
    opacity: 1;
    border-bottom: 2px solid var(--gold);
    color: var(--gold);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.highlight {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
    margin: 20px 0;
}

.palette-mini {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.palette-mini span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.palette-mini span:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dress-note {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 25px;
    padding: 15px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-item strong {
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.tip-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.hotel-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.hotel-distance {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-features {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    color: var(--text-secondary);
    margin: 10px 0;
}

.footer-quote {
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

/* === RESPONSIVO (MOBILE) === */
@media (max-width: 1023px) {
    /* Preloader */
    .spinner {
        width: 40px;
        height: 40px;
    }

    #preloader p {
        font-size: 1rem;
    }

    /* Navbar */
    .liquid-navbar {
        bottom: 15px;
        padding: 8px 12px;
    }

    .nav-item {
        font-size: 0.65rem;
        padding: 8px 12px;
    }

    /* Journey */
    .photo-stack {
        height: 350px;
    }

    .stacked-card {
        width: 240px;
        height: 320px;
    }

    /* Padrinhos Mobile: Horizontal Scroll */
    .padrinhos-container {
        height: auto;
    }

    .padrinhos-stage {
        flex-direction: column;
        overflow: visible;
    }

    .p-details-panel {
        display: none;
    }

    .p-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .p-card {
        min-width: 240px;
        flex-direction: column;
        text-align: center;
        scroll-snap-align: center;
        opacity: 1;
        transform: scale(1);
        background: var(--glass-strong);
    }

    .p-desc-hidden {
        display: block;
        margin-top: 10px;
    }

    /* Venue Split Mobile: Pilha vertical */
    .venue-split-container {
        flex-direction: column;
        gap: 30px;
        padding-top: 50px;
    }

    .venue-left {
        position: relative;
        top: 0;
        flex: none;
        width: 100%;
    }

    .venue-right {
        max-height: none;
        overflow: visible;
    }

    .venue-card {
        padding: 30px 20px;
    }

    .timeline-item {
        padding: 18px;
        margin-left: 15px;
    }

    /* RSVP & Gifts */
    .rsvp-gifts-split {
        flex-direction: column;
        gap: 30px;
    }

    .rsvp-card, .gift-card {
        padding: 35px 25px;
    }

    /* Narrative */
    .narrative-h2 {
        font-size: 2rem;
    }

    /* Modal */
    .modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }

    .grid-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    /* Tab header */
    .tab-header {
        justify-content: center;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    /* Footer */
    .footer-quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-text-anim {
        font-size: 2.5rem;
    }

    .hero-date {
        font-size: 1rem;
    }

    /* Timer */
    .timer-flex {
        flex-wrap: wrap;
        gap: 10px;
    }

    .t-box {
        min-width: 70px;
        padding: 10px 15px;
    }

    /* Journey */
    .photo-stack {
        height: 300px;
    }

    .stacked-card {
        width: 200px;
        height: 280px;
    }

    /* Venue */
    .venue-actions {
        flex-direction: column;
    }

    .btn-main, .btn-secondary {
        width: 100%;
    }

    /* Gallery */
    .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline */
    .timeline-item {
        padding: 15px;
    }

    /* RSVP & Gifts */
    .rsvp-card, .gift-card {
        padding: 30px 20px;
    }

    .btn-whatsapp {
        padding: 15px;
        font-size: 1rem;
    }
}