/* ============================================
   ALINE & ANDRÉ AUGUSTO — WEDDING SITE
   Palette: Sage/Olive Green + Cream
   Inspired by botanical line art monogram
   ============================================ */

:root {
    --green-dark: #3D4A35;
    --green: #5C6B4F;
    --green-medium: #6B7F5E;
    --green-sage: #8A9F7C;
    --green-light: #B5C4A8;
    --green-pale: #D6E0CC;
    --cream: #F5F2EB;
    --cream-light: #FAF8F4;
    --cream-warm: #EDE8DC;
    --gold: #C4AE6E;
    --gold-light: #D4C5A9;
    --white: #FFFFFF;
    --text: #3D4A35;
    --text-light: #6B7F5E;
    --text-muted: #5C6B4F;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Josefin Sans', 'Helvetica Neue', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-calligraphy: 'Pinyon Script', cursive;

    --container: 1000px;
    --section-padding: 40px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
}

/* Background fixo visível em todos os dispositivos */
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('bg-pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav.scrolled {
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(61, 74, 53, 0.08);
    padding: 10px 0;
}

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

.nav-logo {
    font-family: var(--font-calligraphy);
    font-size: 1.8rem;
    color: var(--green-medium);
    transition: color 0.3s;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.nav-amp {
    font-size: 0.7em;
    color: var(--green-sage);
}

.nav.scrolled .nav-logo {
    color: var(--green-dark);
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--green-sage);
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--green);
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 4px 8px;
    transition: all 0.3s;
    border-radius: 2px;
}

.lang-btn.active {
    color: var(--green-dark);
    background: rgba(107, 127, 94, 0.12);
}

.lang-btn:hover {
    color: var(--green-dark);
}

.lang-divider {
    color: var(--green-pale);
    font-size: 0.7rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-medium);
    transition: width 0.3s;
}

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

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--green-medium);
    transition: all 0.3s;
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.85rem;
        color: var(--green-dark);
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

.hero::before {
    top: -100px;
    left: -100px;
    background: var(--green-medium);
}

.hero::after {
    bottom: -100px;
    right: -100px;
    background: var(--green-medium);
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(245, 242, 235, 0.82);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 60px 50px;
    border-radius: 8px;
    margin-bottom: 60px;
    width: 540px;
    max-width: 100%;
}

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

/* Monogram frame */
.monogram-frame {
    width: 450px;
    margin: -80px auto -15px;
}

.monogram-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-names {
    font-family: var(--font-calligraphy);
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-names .amp {
    font-family: var(--font-calligraphy);
    font-size: 0.65em;
    color: var(--green-sage);
    display: block;
    line-height: 1;
    margin: 6px 0;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.hero-date span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
}

.date-line {
    width: 60px;
    height: 1px;
    background: var(--green-light);
}

.hero-location {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.countdown-separator {
    font-size: 1.5rem;
    color: var(--green-light);
    margin-top: -16px;
}

/* Vineyard illustration */
.hero-vineyard {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 40px;
    opacity: 0.55;
}

.hero-vineyard img {
    width: 100%;
    height: auto;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Hero CTA */
.btn-hero {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--green-medium);
    border: 1px solid var(--green-medium);
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-hero:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 1px;
    height: 24px;
    background: var(--green-light);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--green-light);
    border-bottom: 1px solid var(--green-light);
    transform: rotate(45deg);
}

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

/* ============ SECTION DIVIDER ============ */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.divider-svg {
    width: 160px;
    height: 32px;
    color: var(--green-light);
    display: none;
}

/* ============ SECTIONS COMMON ============ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.section > .container {
    background: rgba(245, 242, 235, 0.82);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 60px 40px;
    border-radius: 8px;
    width: 100%;
    max-width: var(--container);
}


.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
}

/* ============ TIMELINE (STORY) ============ */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--green-pale);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--cream);
    border: 1px solid var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-sage);
}

.timeline-icon svg {
    width: 14px;
    height: 14px;
}

.timeline-icon:has(.timeline-icon-img) {
    background: none;
    border: none;
    width: auto;
    height: auto;
    left: -43px;
    top: 50%;
    transform: translateY(-50%);
    overflow: visible;
}

.timeline-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.ring-img {
    width: 46px;
    height: 46px;
    margin-left: -5px;
}

.rings-img {
    width: 46px;
    height: 46px;
    margin-left: -5px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 4px;
    margin-left: 15px;
}

.timeline-content p {
    margin-left: 15px;
}

.timeline-date-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--green);
    line-height: 1.7;
}

/* ============ EVENT CARDS ============ */
.event-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream-light);
    border: 1px solid var(--green-pale);
    padding: 60px 40px;
    position: relative;
}

.event-card::before,
.event-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--green-light);
    border-style: solid;
}

.event-card::before {
    top: 12px;
    left: 12px;
    border-width: 1px 0 0 1px;
}

.event-card::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 1px 1px 0;
}

.event-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--green-sage);
}

.event-icon:has(.event-icon-img) {
    width: 100%;
    height: auto;
}

.event-icon-img {
    width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.igreja-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.event-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.event-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--green);
}

.detail-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green-sage);
}

.event-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-medium);
    border: 1px solid var(--green-light);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--green-medium);
    color: var(--cream);
    border-color: var(--green-medium);
}

/* ============ DRESS CODE ============ */
.dresscode-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.dresscode-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--cream-light);
    border: 1px solid var(--green-pale);
}

.dresscode-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--green-sage);
}

.dresscode-icon:has(.dresscode-icon-img) {
    width: auto;
    height: auto;
}

.dresscode-icon-img {
    width: auto;
    height: 150px;
    display: block;
    margin: 0 auto;
}

.dresscode-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.dresscode-card p {
    font-size: 0.85rem;
    color: var(--green);
    line-height: 1.6;
}

.dresscode-note {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 24px;
    background: rgba(107, 127, 94, 0.06);
    border-left: 2px solid var(--green-sage);
}

.dresscode-note p {
    font-size: 0.85rem;
    color: var(--green);
    font-style: italic;
}

/* ============ RSVP FORM ============ */
.rsvp-form {
    max-width: 560px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label:not(.radio-label) {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream-light);
    border: 1px solid var(--green-pale);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7F5E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: block;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--green-light);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--green-medium);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: var(--green-medium);
    border-radius: 50%;
}

/* Submit button */
.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--green-medium);
    border: 1px solid var(--green-medium);
    transition: all 0.4s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

/* RSVP Success */
.rsvp-success {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--green-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--green-sage);
}

.success-icon svg { width: 28px; height: 28px; }

.rsvp-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.rsvp-success p {
    font-size: 0.9rem;
    color: var(--green);
}

/* ============ GIFTS ============ */
.gifts-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gifts-text {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 40px;
    line-height: 1.8;
}

.gifts-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gift-card {
    padding: 40px 24px;
    background: var(--cream-light);
    border: 1px solid var(--green-pale);
    text-align: center;
}

.gift-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--green-sage);
}

.gift-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.gift-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ ACCOMMODATION ============ */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.accommodation-card {
    padding: 32px 24px;
    background: var(--cream-light);
    border: 1px solid var(--green-pale);
    text-align: center;
}

.acc-img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.accommodation-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.acc-location {
    font-size: 0.8rem;
    color: var(--green-sage);
    margin-bottom: 8px;
}

.acc-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.accommodation-tip {
    text-align: center;
    font-size: 0.85rem;
    color: var(--green);
    font-style: italic;
    padding: 16px 24px;
    background: rgba(107, 127, 94, 0.06);
    border-left: 2px solid var(--green-sage);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ FOOTER ============ */
.footer {
    background: rgba(61, 74, 53, 0.92);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 60px 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-monogram {
    font-family: var(--font-calligraphy);
    font-size: 2.8rem;
    color: var(--green-light);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.footer-amp {
    font-size: 0.7em;
    color: var(--green-sage);
}

.footer-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--green-sage);
    margin-bottom: 16px;
}

.footer-message {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--green-light);
    margin-bottom: 24px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--green);
    margin: 0 auto 24px;
}

.footer-hashtag {
    font-family: var(--font-body);
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--cream-warm);
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--cream-warm);
    margin-top: 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }


    /* Containers sem borda arredondada, full width no mobile */
    .section > .container {
        border-radius: 0;
        margin: 0;
        background: rgba(245, 242, 235, 0.88);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .hero-content {
        background: rgba(245, 242, 235, 0.88);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        border-radius: 6px;
    }

    /* Menos espaço entre seções */
    .section-divider {
        padding: 20px 0;
    }

    /* Hero */
    .hero {
        padding: 80px 16px 40px;
        min-height: auto;
    }

    .hero-content {
        padding: 40px 24px;
        margin-bottom: 30px;
    }

    .monogram-frame {
        width: 360px;
        margin: -40px auto -10px;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-names {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

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

    .date-line { width: 24px; }

    .hero-location {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    /* Countdown */
    .countdown {
        gap: 8px;
        margin-bottom: 30px;
    }

    .countdown-number { font-size: 1.6rem; }
    .countdown-item { min-width: 48px; }
    .countdown-label { font-size: 0.55rem; }
    .countdown-separator { font-size: 1rem; }

    /* CTA buttons */
    .btn-hero {
        padding: 12px 28px;
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .btn-calendar {
        padding: 10px 24px;
        font-size: 0.6rem;
    }

    /* Sections */
    .section > .container {
        padding: 40px 20px;
        border-radius: 6px;
        margin: 0 8px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .section-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 36px;
    }

    /* Navigation */
    .nav-logo {
        font-size: 1.4rem;
    }

    .lang-switch {
        gap: 4px;
    }

    .lang-btn {
        font-size: 0.6rem;
        padding: 3px 6px;
    }

    /* Event cards */
    .event-card {
        padding: 32px 20px;
    }

    .event-icon {
        width: 48px;
        height: 48px;
    }

    .event-name {
        font-size: 1.4rem;
    }

    /* Map */
    .map-container iframe {
        height: 200px;
    }

    /* Timeline */
    .timeline {
        padding-left: 32px;
    }

    .timeline-icon {
        left: -32px;
        width: 24px;
        height: 24px;
    }

    .timeline-icon svg {
        width: 12px;
        height: 12px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.82rem;
    }

    /* Dress code */
    .dresscode-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rsvp-form {
        max-width: 100%;
    }

    /* Gifts */
    .gifts-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    /* Accommodation */
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .accommodation-card {
        padding: 24px 20px;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 16px 32px 16px 0;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }

    /* Playlist */
    .playlist-embed iframe {
        height: 280px;
    }

    /* Footer */
    .footer {
        padding: 40px 16px;
    }

    .footer-monogram {
        font-size: 2.2rem;
    }

    /* Section dividers - reduce spacing on mobile */
    .section-divider {
        padding: 30px 0;
    }
}

@media (max-width: 380px) {
    .hero-content {
        padding: 32px 16px;
    }

    .hero-names {
        font-size: 1.8rem;
    }

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

    .countdown-item {
        min-width: 40px;
    }

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

    .section > .container {
        padding: 32px 16px;
        margin: 0 4px;
    }

    .event-card {
        padding: 24px 16px;
    }
}

/* ============ CALENDAR BUTTON ============ */
.btn-calendar {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-medium);
    background: none;
    border: 1px solid var(--green-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-calendar:hover {
    background: var(--green-medium);
    color: var(--cream);
    border-color: var(--green-medium);
}

/* ============ MAP ============ */
.map-container {
    margin-top: 32px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--green-pale);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--green-pale);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 40px 20px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--green-dark);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--green-medium);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green-sage);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--green);
    line-height: 1.7;
}

/* ============ RSVP EMBED ============ */
.rsvp-embed {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.rsvp-embed iframe {
    display: block;
    width: 100%;
}

/* ============ PLAYLIST ============ */
.playlist-embed {
    max-width: 600px;
    margin: 0 auto 24px;
    border-radius: 12px;
    overflow: hidden;
}

.playlist-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ ANIMATIONS ============ */
.section {
    opacity: 1;
}

/* Placeholder images */
.photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--cream-warm);
    border: 1px dashed var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
