/* =========================================================
   WEDDING INVITATION - EDITORIAL LUXURY STYLE (BLANCO CON VINO)
   ARES & ITZE - INSPIRADO EXACTAMENTE EN EL DISEÑO DE REFERENCIA
   ========================================================= */

:root {
    --bg-page: #FAF7F2;
    --bg-card: #FFFFFF;
    --bg-wine: #5A1220;
    --bg-wine-dark: #380811;
    
    --color-wine: #5A1220;
    --color-wine-dark: #380811;
    --color-wine-light: #7E1C30;
    
    --color-gold: #C5A059;
    --color-gold-dark: #9E7D3B;
    --color-gold-light: #DFBA6B;
    
    --color-text-dark: #2B181C;
    --color-text-muted: #6E5F62;
    --color-text-light: #948588;
    
    --border-fine: 1px solid rgba(197, 160, 89, 0.4);
    --border-wine: 1px solid rgba(90, 18, 32, 0.15);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-page);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

    /* ══════════════════════════════════════════════════════════
       FONDO DE LA INVITACIÓN — FOTO REAL DE LOS NOVIOS
       ══════════════════════════════════════════════════════════ */
    background-image:
        linear-gradient(
            to bottom,
            rgba(250, 247, 242, 0.92) 0%,
            rgba(250, 247, 242, 0.86) 50%,
            rgba(250, 247, 242, 0.94) 100%
        ),
        url('../images/fotos/_RO21083.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

/* Tipografías Editoriales */
.font-serif, h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--color-wine);
    font-weight: 600;
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Contenedores */
.container {
    width: 90%;
    max-width: 700px; /* Estilo columna nupcial móvil de alta gama */
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.section {
    padding: 60px 0;
    position: relative;
}

.section-divider-clean {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto;
    opacity: 0.6;
}

/* =========================================================
   BARRA DE NAVEGACIÓN MINIMALISTA
   ========================================================= */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    padding: 10px 0;
}

.navbar-container {
    max-width: 680px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-monogram {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--color-wine);
}

.navbar-rsvp-btn {
    background: var(--color-wine);
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 7px 20px 8px;
    border-radius: 999px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 14px rgba(90, 18, 32, 0.18);
    transition: all 0.3s ease;
}

.navbar-rsvp-btn:hover {
    background: var(--color-wine-dark);
    transform: translateY(-1px);
}

/* =========================================================
   REPRODUCTOR DE AUDIO FLOTANTE & SELECTOR
   ========================================================= */
.floating-music-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.music-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-wine);
    border: 1.5px solid var(--color-gold);
    box-shadow: 0 6px 20px rgba(90, 18, 32, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: transform 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.06);
}

.music-bar {
    width: 2.5px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.music-btn-change {
    background: #FFFFFF;
    color: var(--color-wine);
    border: 1px solid var(--color-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 14px 7px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.music-btn-change:hover {
    background: rgba(90, 18, 32, 0.05);
}

/* =========================================================
   CABECERA EDITORIAL (EXACTO A LA REFERENCIA)
   ========================================================= */
.hero-editorial {
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background-image: url('../images/icons/botanical.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-editorial::after {
    content: '';
    position: absolute;
    top: 180px;
    left: -30px;
    width: 130px;
    height: 130px;
    background-image: url('../images/icons/botanical.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1) rotate(45deg);
    pointer-events: none;
}

.quote-intro {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 35px;
    padding: 0 10px;
}

/* El Monograma Editorial Vertical (A | I) */
.editorial-monogram-box {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.editorial-letter {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    font-weight: 500;
    color: var(--color-wine);
    line-height: 1;
    position: absolute;
}

.letter-a {
    top: 0;
    left: 10px;
}

.letter-i {
    bottom: 0;
    right: 15px;
}

.editorial-stem {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 50%;
    width: 1.5px;
    background-color: var(--color-wine);
    opacity: 0.6;
}

/* Nombres */
.names-editorial {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 6vw, 2.6rem);
    font-weight: 600;
    color: var(--color-wine-dark);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.save-the-date-tag {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    display: block;
}

/* Recuadro de Fecha Minimalista con Líneas Finas */
.date-editorial-box {
    max-width: 320px;
    margin: 0 auto 25px;
}

.date-day-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-wine);
    margin-bottom: 6px;
}

.date-main-row {
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--color-wine-dark);
}

.date-main-row .month {
    font-size: 1.05rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.date-main-row .day-number {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-wine);
    padding: 0 12px;
    border-left: 1px solid rgba(197, 160, 89, 0.4);
    border-right: 1px solid rgba(197, 160, 89, 0.4);
}

.date-main-row .year {
    font-size: 1.05rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Script "Faltan" */
.faltan-script {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--color-gold-dark);
    margin: 15px 0 8px;
    line-height: 1;
}

/* Contador Minimalista sin Cajas Pesadas */
.countdown-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3vw, 22px);
    margin: 10px auto 35px;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-val {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--color-wine);
    line-height: 1;
}

.cd-lbl {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.cd-sep {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 12px;
}

/* =========================================================
   MARCO DE FOTO TORN PAPER / DECKLED EDGES
   ========================================================= */
.deckled-photo-container {
    position: relative;
    max-width: 480px;
    margin: 30px auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.deckled-photo-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deckled-photo-container:hover img {
    transform: scale(1.03);
}

/* ── PHOTO HINT OVERLAY — oculto. Para reactivarlo cambia display:none por display:flex ── */
.photo-hint-overlay {
    display: none; /* Overlay desactivado. Cambiar a display:flex para reactivar */
    position: absolute;
    inset: 0;
    background: rgba(90, 18, 32, 0.2);
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deckled-photo-container:hover .photo-hint-overlay {
    opacity: 1;
}

/* =========================================================
   CUÁNDO Y DÓNDE (TARJETAS APILADAS BLANCO Y VINO)
   ========================================================= */
.locations-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
}

/* Tarjeta Blanca (Ceremonia) */
.loc-card-white {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 4px;
    padding: 35px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

/* Tarjeta Color Vino (Recepción / Fiesta) */
.loc-card-wine {
    background: var(--bg-wine);
    color: #FFFFFF;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 35px 25px;
    box-shadow: 0 10px 28px rgba(90, 18, 32, 0.35);
    text-align: center;
}

.loc-card-wine h3, .loc-card-wine .loc-title-script {
    color: #FFFFFF;
}

.loc-icon-clean {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
}

.loc-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--color-wine);
}

.loc-card-wine .loc-title-script {
    color: #FFFFFF;
}

.loc-name-bold {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.loc-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.loc-card-wine .loc-desc {
    color: rgba(255, 255, 255, 0.85);
}

.btn-loc-white {
    background: #FFFFFF;
    color: var(--color-wine);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 9px 22px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-gold);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loc-white:hover {
    background: var(--bg-page);
    transform: translateY(-2px);
}

.btn-loc-wine {
    background: var(--color-wine);
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 9px 22px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-gold);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loc-wine:hover {
    background: var(--color-wine-dark);
    transform: translateY(-2px);
}

/* =========================================================
   ITINERARIO MINIMALISTA (LÍNEA VERTICAL CON ICONOS LINEALES)
   ========================================================= */
.itinerary-minimal-list {
    position: relative;
    max-width: 380px;
    margin: 30px auto 0;
    padding: 10px 0;
}

.itinerary-minimal-list::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: rgba(197, 160, 89, 0.5);
    transform: translateX(-50%);
}

.itin-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.itin-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.itin-step:nth-child(even) {
    flex-direction: row;
    text-align: left;
}

.itin-info {
    width: 42%;
}

.itin-time {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.itin-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-wine);
    line-height: 1.2;
}

.itin-icon-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.itin-icon-node img {
    width: 24px;
    height: 24px;
}

/* =========================================================
   DRESS CODE (CON SILUETAS VECTORIALES)
   ========================================================= */
.dress-code-editorial {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 4px;
    padding: 40px 25px;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dress-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 4px;
}

.dress-category {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-wine-dark);
    margin-bottom: 20px;
}

.dress-silhouettes {
    width: 80px;
    height: 96px;
    margin: 0 auto 20px;
}

.dress-rules-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.forbidden-colors-bar {
    border-top: 1px solid rgba(197, 160, 89, 0.35);
    padding-top: 22px;
}

.forbidden-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-wine);
    display: block;
    margin-bottom: 14px;
}

.swatches-flex {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.swatch-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swatch-circle-clean {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
}

.swatch-circle-clean::after {
    content: '✕';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #C8102E;
}

.swatch-white::after { color: #C8102E; }
.swatch-black::after { color: #FFFFFF; }
.swatch-navy::after { color: #FFFFFF; }
.swatch-red::after { color: #FFFFFF; }

.swatch-tag {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* =========================================================
   SUGERENCIAS DE REGALOS
   ========================================================= */
.gifts-editorial {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 4px;
    padding: 40px 25px;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.gift-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 4px;
}

.gift-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-wine-dark);
    margin-bottom: 14px;
}

.gift-msg {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-store-pill {
    background: var(--color-wine);
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', Georgia, serif;
    padding: 9px 24px 10px;
    border-radius: 999px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-block;
    margin: 6px 0;
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
}

.btn-store-pill:hover {
    background: var(--color-wine-dark);
    transform: translateY(-2px);
}

/* =========================================================
   CONFIRMACIÓN RSVP (ESTILO LIMPIO)
   ========================================================= */
.rsvp-editorial-card {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 4px;
    padding: 40px 25px;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.form-control-clean {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 4px;
    background: var(--bg-page);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.form-control-clean:focus {
    outline: none;
    border-color: var(--color-wine);
    background: #FFFFFF;
}

.btn-submit-rsvp {
    background: var(--color-wine);
    color: #FFFFFF;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--color-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(90, 18, 32, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.btn-submit-rsvp:hover {
    background: var(--color-wine-dark);
    transform: translateY(-2px);
}

.rsvp-contact-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--color-wine);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 22px 0 12px;
    text-align: center;
}

.rsvp-contact-buttons {
    display: flex;
    gap: 14px;
}

.rsvp-contact-btn {
    flex: 1;
    margin-top: 0;
    min-width: 0;
    padding: 12px 10px;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.05;
    text-transform: none;
    box-shadow: 0 5px 16px rgba(90, 18, 32, 0.2);
}

.rsvp-contact-btn small {
    display: block;
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .navbar-rsvp-btn {
        font-size: 0.98rem;
        padding-left: 14px;
        padding-right: 14px;
    }

    .rsvp-contact-buttons {
        flex-direction: column;
    }
}

/* Despedida */
.farewell-editorial {
    padding: 60px 0 40px;
    text-align: center;
}

.farewell-script {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 10px;
}

.farewell-names {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    letter-spacing: 2px;
}
/* =========================================================
   CARRUSEL INTERACTIVO DE FOTOS (SWIPEABLE & TOUCH FRIENDLY)
   ========================================================= */
.wedding-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 25px auto 30px;
    border-radius: 6px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--color-gold);
    color: var(--color-wine);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--color-wine);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

/* Indicadores de Puntos (Dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 14px;
    background: #FFFFFF;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--color-wine);
}

@media (max-width: 480px) {
    .carousel-viewport {
        height: 320px;
    }
}
/* =========================================================
   BOTONES DE AGREGAR A CALENDARIO (GOOGLE & ICAL)
   ========================================================= */
.calendar-add-container {
    margin: 25px auto 35px;
    text-align: center;
}

.calendar-add-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-gold-dark);
    display: block;
    margin-bottom: 12px;
}

.calendar-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cal-pill {
    background: #FFFFFF;
    color: var(--color-wine);
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    padding: 9px 20px 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(90, 18, 32, 0.06);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cal-pill:hover {
    background: var(--color-wine);
    color: #FFFFFF;
    border-color: var(--color-wine);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90, 18, 32, 0.15);
}

/* =========================================================
   SECCIÓN FINAL DE DESPEDIDA (EXACTA A LA CAPTURA DEL USUARIO)
   ========================================================= */
.farewell-section-final {
    background: var(--bg-page);
    padding: 70px 20px 50px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.35);
}

.farewell-monogram-top {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.2rem, 9vw, 4.2rem);
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 8px;
}

.farewell-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 5.5vw, 2.4rem);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.25;
    max-width: 440px;
    margin: 0 auto 16px;
}

.farewell-divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px auto 25px;
}

.farewell-divider-line {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.7;
}

.farewell-divider-icon {
    color: var(--color-gold-dark);
    font-size: 13px;
}

.farewell-body-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.94rem;
    line-height: 1.8;
    color: #5A484B;
    max-width: 430px;
    margin: 0 auto 22px;
}

.farewell-highlight-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    color: #380811;
    max-width: 420px;
    margin: 0 auto 30px;
}

.farewell-signature-gold {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    color: var(--color-gold-dark);
    line-height: 1.25;
    margin-bottom: 35px;
}

.farewell-signature-gold span {
    display: block;
    font-size: clamp(2.6rem, 7.5vw, 3.4rem);
}

.farewell-date-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
}
/* =========================================================
   MONOGRAMA A + CORAZÓN + I (HERO Y DESPEDIDA)
   ========================================================= */
.heart-monogram-hero-box {
    width: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-monogram-hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(90, 18, 32, 0.08));
    transition: transform 0.3s ease;
}

.heart-monogram-hero-img:hover {
    transform: scale(1.04);
}

.navbar-monogram-brand {
    display: flex;
    align-items: center;
}
.heart-monogram-hero-box {
    width: 170px;
    height: 170px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.heart-monogram-hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(90, 18, 32, 0.08));
    transition: transform 0.4s ease;
}
/* =========================================================
   MONOGRAMA A♡I BOTÁNICO — TRANSPARENTE
   ========================================================= */

.navbar-monogram-brand img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 1px 3px rgba(90, 18, 32, 0.12));
    transition: transform 0.3s ease;
}

.navbar-monogram-brand:hover img {
    transform: scale(1.05);
}

.heart-monogram-hero-box {
    width: 190px;
    height: 190px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-monogram-hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(90, 18, 32, 0.1));
    transition: transform 0.4s ease;
}

.heart-monogram-hero-img:hover {
    transform: scale(1.04);
}

.farewell-monogram-top img {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(90, 18, 32, 0.1));
    transition: transform 0.3s ease;
}

.farewell-monogram-top:hover img {
    transform: scale(1.04);
}
