/* ═══════════════════════════════════════════════ */
/* DESIGN TOKENS & CUSTOM PROPERTIES              */
/* ═══════════════════════════════════════════════ */
:root {
    --navy: #0B1F33;
    --navy-light: #122D47;
    --navy-dark: #071525;
    --cream: #F5EFE6;
    --cream-light: #FAF7F2;
    --cream-dark: #E8DFD0;
    --gold: #C9A66B;
    --gold-light: #D4B87D;
    --gold-dark: #B8935A;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #F5EFE6;
    --text-muted: rgba(245, 239, 230, 0.7);

    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 8px 40px rgba(11, 31, 51, 0.12);
    --shadow-glow: 0 0 40px rgba(201, 166, 107, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-serif);
    color: var(--text-light);
    background: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* Paper texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 166, 107, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 166, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════ */
/* LOADING SCREEN                                  */
/* ═══════════════════════════════════════════════ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

.monogram-ring {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.monogram-circle {
    width: 100%;
    height: 100%;
}

.ring-outer {
    animation: rotateRing 8s linear infinite;
    transform-origin: center;
}

.ring-inner {
    animation: rotateRing 12s linear infinite reverse;
    transform-origin: center;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.monogram-text {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    padding: 50px 0;
}

.monogram-j, .monogram-c {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--cream);
    animation: fadeInScale 1s ease forwards;
}

.monogram-amp {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    animation: fadeInScale 1s ease 0.3s forwards;
    opacity: 0;
}

.monogram-j { animation-delay: 0s; }
.monogram-c { animation-delay: 0.5s; opacity: 0; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.loading-bar-container {
    width: 120px;
    height: 2px;
    background: rgba(201, 166, 107, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loadProgress 2.5s ease forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

.loading-tagline {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}

/* ═══════════════════════════════════════════════ */
/* MUSIC TOGGLE                                    */
/* ═══════════════════════════════════════════════ */
.music-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(11, 31, 51, 0.85);
    border: 1px solid rgba(201, 166, 107, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all var(--transition-fast);
    color: var(--gold);
}

.music-toggle:hover {
    background: rgba(11, 31, 51, 0.95);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.music-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.music-toggle.playing .music-icon {
    display: none;
}

.music-bars {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.music-toggle.playing .music-bars {
    display: flex;
}

.music-bars span {
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    animation: musicBar 0.8s ease infinite alternate;
}

.music-bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.music-bars span:nth-child(4) { height: 14px; animation-delay: 0.45s; }

@keyframes musicBar {
    from { height: 4px; }
    to { height: 16px; }
}

/* ═══════════════════════════════════════════════ */
/* NAVIGATION                                      */
/* ═══════════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(11, 31, 51, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-menu-btn span {
    display: block;
    height: 1.5px;
    background: var(--gold);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}
.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* Side Navigation Dots */
.side-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.5);
    background: transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.side-dot::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.side-dot:hover,
.side-dot.active {
    border-color: var(--gold);
    transform: scale(1.3);
}

.side-dot.active::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════ */
/* SECTION COMMON                                  */
/* ═══════════════════════════════════════════════ */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto 0;
}

/* Botanical decorations */
.botanical-decoration {
    position: absolute;
    top: -20px;
    width: 60px;
    height: 90px;
    opacity: 0.6;
}

.botanical-decoration.left {
    left: -80px;
}

.botanical-decoration.right {
    right: -80px;
}

.botanical-svg {
    width: 100%;
    height: 100%;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ═══════════════════════════════════════════════ */
/* HERO SECTION                                    */
/* ═══════════════════════════════════════════════ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 31, 51, 0.45) 0%,
        rgba(11, 31, 51, 0.60) 40%,
        rgba(11, 31, 51, 0.80) 80%,
        rgba(11, 31, 51, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-ornament-top,
.hero-ornament-bottom {
    width: 150px;
    margin: 0 auto;
    opacity: 0.7;
}

.ornament-svg {
    width: 100%;
    height: auto;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-names {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin: 8px 0;
}

.name-jorge, .name-carla {
    display: inline-block;
}

.name-amp {
    font-family: var(--font-serif);
    font-size: 0.35em;
    color: var(--gold);
    font-style: italic;
    vertical-align: middle;
    margin: 0 8px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--cream-dark);
    letter-spacing: 4px;
    margin: 8px 0 24px;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.date-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.date-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.hero-scroll-cta:hover {
    color: var(--gold);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Fade in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

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

/* Floating petals */
.floating-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(201, 166, 107, 0.3), transparent);
    border-radius: 50% 0 50% 0;
    animation: floatPetal linear infinite;
}

.petal-1 { left: 10%; animation-duration: 12s; animation-delay: 0s; top: -20px; }
.petal-2 { left: 30%; animation-duration: 15s; animation-delay: 3s; top: -20px; }
.petal-3 { left: 55%; animation-duration: 11s; animation-delay: 6s; top: -20px; }
.petal-4 { left: 75%; animation-duration: 14s; animation-delay: 2s; top: -20px; }
.petal-5 { left: 90%; animation-duration: 13s; animation-delay: 8s; top: -20px; }

@keyframes floatPetal {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════ */
/* COUNTDOWN SECTION                               */
/* ═══════════════════════════════════════════════ */
.countdown-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-frame {
    width: 110px;
    height: 110px;
    border: 1px solid rgba(201, 166, 107, 0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 166, 107, 0.05);
    position: relative;
    overflow: hidden;
}

.countdown-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.08), transparent);
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 12px;
    display: block;
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════ */
/* NOSSA HISTÓRIA / TIMELINE                       */
/* ═══════════════════════════════════════════════ */
.historia-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.historia-section .section-subtitle {
    color: var(--gold-dark);
}

.historia-section .section-title {
    color: var(--navy);
}

.historia-section .section-title::after {
    background: var(--gold-dark);
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all var(--transition-fast);
    box-shadow: 0 0 0 6px var(--cream);
}

.timeline-dot svg {
    width: 22px;
    height: 22px;
}

.timeline-item:hover .timeline-dot {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px var(--cream), var(--shadow-glow);
}

.timeline-item:hover .timeline-dot svg {
    stroke: var(--cream);
}

.timeline-content {
    padding-top: 8px;
}

.timeline-year {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    font-weight: 600;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 4px 0 8px;
    font-weight: 600;
}

.timeline-text {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(11, 31, 51, 0.7);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════ */
/* GALERIA                                         */
/* ═══════════════════════════════════════════════ */
.galeria-section {
    padding: 100px 0;
    background: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--cream);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 37, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--cream);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.3);
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(201, 166, 107, 0.2);
    border-color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.3);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 166, 107, 0.2);
    border-color: var(--gold);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* ═══════════════════════════════════════════════ */
/* DETALHES DO EVENTO                              */
/* ═══════════════════════════════════════════════ */
.detalhes-section {
    padding: 100px 0;
    background: var(--cream);
}

.detalhes-section .section-subtitle {
    color: var(--gold-dark);
}

.detalhes-section .section-title {
    color: var(--navy);
}

.detalhes-section .section-title::after {
    background: var(--gold-dark);
}

.event-date-card {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 166, 107, 0.15);
}

.event-date-number {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.event-date-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.event-month {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--navy);
    font-weight: 600;
}

.event-year-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 300;
    letter-spacing: 6px;
}

.event-day-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto;
}

.event-day-name {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-dark);
    font-weight: 500;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.event-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 166, 107, 0.12);
    transition: all var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border-color: var(--gold);
}

.event-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.event-card-icon svg {
    width: 100%;
    height: 100%;
}

.event-card:hover .event-card-icon svg {
    stroke: var(--gold-dark);
}

.event-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-card-time {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* Dress Code */
.dresscode-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 166, 107, 0.15);
    margin-bottom: 60px;
}

.dresscode-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.dresscode-label {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.dresscode-colors {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(201, 166, 107, 0.3);
    transition: all var(--transition-fast);
    cursor: default;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.dresscode-note {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(11, 31, 51, 0.6);
}

/* Monogram Divider */
.monogram-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.monogram-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--cream);
}

.monogram-badge span {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--gold-dark);
}

.monogram-badge em {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    color: var(--gold);
}

/* ═══════════════════════════════════════════════ */
/* LOCALIZAÇÃO                                     */
/* ═══════════════════════════════════════════════ */
.localizacao-section {
    padding: 100px 0;
    background: var(--navy);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 166, 107, 0.2);
    background: rgba(201, 166, 107, 0.05);
}

.location-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.location-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.location-icon svg {
    width: 100%;
    height: 100%;
}

.location-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.location-address {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.btn-map:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.location-map {
    min-height: 350px;
    position: relative;
}

.location-map iframe {
    position: absolute;
    inset: 0;
}

/* ═══════════════════════════════════════════════ */
/* RSVP                                            */
/* ═══════════════════════════════════════════════ */
.rsvp-section {
    padding: 100px 0;
    background: var(--cream);
}

.rsvp-section .section-subtitle {
    color: var(--gold-dark);
}

.rsvp-section .section-title {
    color: var(--navy);
}

.rsvp-section .section-title::after {
    background: var(--gold-dark);
}

.rsvp-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 166, 107, 0.15);
}

.rsvp-intro {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(11, 31, 51, 0.7);
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 600;
}

.form-group input[type="text"] {
    padding: 14px 18px;
    border: 1px solid rgba(201, 166, 107, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    background: var(--cream-light);
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input[type="text"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15);
}

.form-group input[type="text"]::placeholder {
    color: rgba(11, 31, 51, 0.35);
    font-style: italic;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201, 166, 107, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream-light);
}

.counter-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
}

.counter-btn:hover {
    background: rgba(201, 166, 107, 0.15);
    color: var(--navy);
}

.guest-counter input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy);
    outline: none;
    -moz-appearance: textfield;
}

.guest-counter input::-webkit-outer-spin-button,
.guest-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.btn-rsvp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    width: 100%;
}

.btn-rsvp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════ */
/* PRESENTE                                        */
/* ═══════════════════════════════════════════════ */
.presente-section {
    padding: 100px 0;
    background: var(--navy);
}

.presente-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: rgba(201, 166, 107, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 166, 107, 0.2);
}

.presente-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.presente-icon svg {
    width: 100%;
    height: 100%;
}

.presente-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.presente-qr {
    margin-bottom: 24px;
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-svg {
    width: 100%;
    height: 100%;
}

.qr-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
}

.presente-details p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.presente-details strong {
    color: var(--gold);
}

.presente-name {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--cream);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════ */
/* FOOTER                                          */
/* ═══════════════════════════════════════════════ */
.footer-section {
    padding: 80px 0 40px;
    background: var(--navy-dark);
    text-align: center;
    position: relative;
}

.footer-ornament {
    width: 200px;
    margin: 0 auto 40px;
    opacity: 0.5;
}

.footer-orn {
    width: 100%;
    height: auto;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-names {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 400;
}

.footer-date {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 32px;
}

.footer-hearts {
    margin-bottom: 40px;
}

.footer-heart {
    width: 20px;
    height: 20px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(201, 166, 107, 0.1);
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(245, 239, 230, 0.3);
}

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE                                      */
/* ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .botanical-decoration {
        display: none;
    }

    .side-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 31, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transform: translateY(-100%);
        transition: transform var(--transition-smooth);
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .countdown-frame {
        width: 80px;
        height: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 32px;
    }

    .location-map {
        min-height: 250px;
    }

    .rsvp-card {
        padding: 32px 24px;
    }

    .presente-card {
        padding: 32px 24px;
    }

    .hero-names {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }
}

@media (max-width: 480px) {
    .countdown-grid {
        gap: 8px;
    }

    .countdown-frame {
        width: 68px;
        height: 68px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
        margin: 0 2px;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .event-card {
        padding: 20px 12px;
    }

    .event-card-icon {
        width: 40px;
        height: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 8px;
    }

    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    .hero-date span {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .date-line {
        width: 30px;
    }

    .section-container {
        padding: 0 16px;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-dot {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .timeline-dot svg {
        width: 18px;
        height: 18px;
    }

    .timeline-line {
        left: 22px;
    }

    .event-date-card {
        padding: 28px 20px;
    }

    .dresscode-card {
        padding: 28px 20px;
    }
}

/* Print styles */
@media print {
    .main-nav,
    .side-nav,
    .music-toggle,
    .loading-screen,
    .hero-scroll-cta,
    .floating-petals,
    .lightbox {
        display: none !important;
    }
}
