/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fdf3f5;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #a71950;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 560px;
    overflow: hidden;
    background: #fff0f3;
}


/* =========================================
   IMAGEN
========================================= */

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #f9e9ed;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
}


/* =========================================
   OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 245, 247, 0) 45%,
        rgba(255, 235, 240, 0.25) 58%,
        rgba(255, 232, 238, 0.70) 72%,
        rgba(248, 232, 235, 0.95) 86%,
        #fff0f3 100%
    );
}


/* =========================================
   BOTÓN MENÚ
========================================= */

.menu-button {
    position: absolute;
    top: 28px;
    left: 22px;

    z-index: 10;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: #b91655;

    box-shadow: 0 6px 18px rgba(130, 0, 50, 0.22);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    background: white;

    border-radius: 5px;
}


/* =========================================
   BOTÓN MÚSICA
========================================= */

.music-button {
    position: fixed;
    top: 28px;
    right: 22px;

    z-index: 10;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: #b91655;

    color: white;

    font-size: 27px;

    box-shadow: 0 6px 18px rgba(130, 0, 50, 0.22);

    cursor: pointer;
}


/* =========================================
   CONTENIDO HERO
========================================= */

.hero-content {
    position: absolute;

    z-index: 5;

    left: 20px;
    right: 20px;

    bottom: 62px;

    text-align: center;

    color: #a71950;

    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
}


/* =========================================
   MIS
========================================= */

.hero-small {
    font-family: 'Great Vibes', cursive;

    font-size: 58px;
    font-weight: 400;

    line-height: 1;

    margin: 0;

    color: #c51658;
}


/* =========================================
   XV
========================================= */

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif !important;

    font-size: 58px;
    font-weight: 500;

    line-height: 1;

    margin: 0;

    color: #c51658;

    letter-spacing: 4px;
}


/* =========================================
   ORNAMENTO
========================================= */

.ornament {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin: 12px auto 10px;

    color: #c88b32;

    font-size: 15px;
}

.ornament span:first-child,
.ornament span:last-child {
    width: 55px;
    height: 1px;

    background: #c88b32;
}


/* =========================================
   NOMBRE
========================================= */

.hero-content h2 {
    font-family: 'Great Vibes', cursive !important;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    color: #c51658;
    letter-spacing: 0;
}

.name-script {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}


/* =========================================
   SCROLL
========================================= */

.scroll-indicator {
    position: absolute;

    z-index: 6;

    bottom: 22px;

    left: 50%;

    transform: translateX(-50%);

    width: 35px;
    height: 35px;

    border-radius: 50%;

    border: 1px solid rgba(167, 25, 80, 0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #a71950;

    font-size: 25px;

    animation: bounce 1.8s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 7px);
    }
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {

    .hero {
        width: 100%;
        max-width: none;
        margin: 0;

        min-height: 900px;

        box-shadow: none;
    }

}


/* =========================================
   BIENVENIDA
========================================= */

.welcome-section {
    position: relative;

    width: 100%;

    padding: 55px 20px 60px;

    background:
        linear-gradient(
            180deg,
            #fff0f3 0%,
            #fdf5f6 50%,
            #fff0f3 100%
        );
}


.welcome-card {
    position: relative;

    max-width: 500px;

    margin: 0 auto;

    padding: 42px 25px 38px;

    background: rgba(255, 255, 255, 0.72);

    border-radius: 28px;

    border: 1px solid rgba(201, 139, 50, 0.18);

    box-shadow:
        0 10px 35px rgba(160, 20, 75, 0.08);

    text-align: center;
}


/* ICONO */

.welcome-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #c58b3a;

    color: white;

    font-size: 27px;

    box-shadow:
        0 5px 15px rgba(170, 110, 30, 0.22);
}


/* TÍTULO */

.welcome-card h2 {
    margin: 0;

    color: #b71955;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 400;
}


/* ORNAMENTO */

.section-ornament {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 18px 0 25px;

    color: #c58b3a;
}

.section-ornament span {
    width: 55px;
    height: 1px;

    background: #c58b3a;
}

.section-ornament b {
    font-size: 13px;

    font-weight: 400;
}


/* TEXTO */

.welcome-card p {
    margin: 0;

    color: #4d3b40;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.55;

    text-align: center;
}


/* FIRMA */

.welcome-signature {
    margin-top: 28px;

    color: #b71955;

    font-size: 27px;

    font-style: italic;
}


/* =========================================
   COUNTDOWN
========================================= */

.countdown-card {
    margin: 20px 14px;

    padding: 28px 18px 22px;

    background: rgba(255, 249, 250, 0.88);

    border: 1px solid rgba(210, 155, 175, 0.22);

    border-radius: 24px;

    box-shadow:
        0 8px 25px rgba(170, 70, 100, 0.08);

    text-align: center;
}


/* TÍTULO */

.countdown-card h2 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 25px;

    font-weight: 700;

    color: #c51658;

    text-transform: uppercase;
}


/* ORNAMENTO */

.countdown-card .section-ornament {
    margin: 8px auto 18px;
}


/* CONTADOR */

.countdown {
    display: flex;

    align-items: stretch;

    justify-content: center;

    width: 100%;
}


/* CADA NÚMERO */

.countdown-item {
    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


/* NÚMEROS */

.countdown-item span {
    font-family: 'Cormorant Garamond', serif;

    font-size: 42px;

    font-weight: 600;

    line-height: 1;

    color: #c51658;
}


/* ETIQUETAS */

.countdown-item small {
    margin-top: 8px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    color: #333;
}


/* DIVISORES */

.countdown-divider {
    width: 1px;

    height: 58px;

    margin: auto 3px;

    background: linear-gradient(
        to bottom,
        transparent,
        #d5a15c 20%,
        #d5a15c 80%,
        transparent
    );
}


/* =========================================
   FECHA + CALENDARIO
========================================= */

.countdown-date {
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    margin-top: 35px;
}


/* FECHA */

.countdown-date strong {
    display: block;

    width: auto;

    font-family: 'Cormorant Garamond', serif;

    font-size: 24px;

    font-weight: 600;

    color: #c51658;

    line-height: 1;

    white-space: nowrap;

    text-align: center;
}


/* =========================================
   ICONO CALENDARIO
========================================= */

.calendar-icon {
    position: relative;

    display: inline-block;

    width: 38px;
    height: 38px;

    border: 3px solid #c51658;

    border-radius: 4px;

    box-sizing: border-box;

    flex-shrink: 0;
}


/* PARTE SUPERIOR */

.calendar-top {
    position: absolute;

    left: -3px;

    top: 7px;

    width: calc(100% + 6px);

    height: 3px;

    background: #c51658;
}


/* ARGOLLAS */

.calendar-icon::before,
.calendar-icon::after {
    content: "";

    position: absolute;

    top: -7px;

    width: 5px;

    height: 11px;

    background: #c51658;

    border-radius: 3px;
}

.calendar-icon::before {
    left: 6px;
}

.calendar-icon::after {
    right: 6px;
}


/* CUADRÍCULA */

.calendar-grid {
    position: absolute;

    left: 7px;

    right: 7px;

    top: 14px;

    bottom: 5px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-template-rows: repeat(3, 1fr);

    gap: 3px;
}


/* CUADROS */

.calendar-grid i {
    display: block;

    width: 100%;

    height: 100%;

    background: #c51658;

    border-radius: 1px;
}


/* ORNAMENTO INFERIOR */

.countdown-card .bottom-ornament {
    margin-top: 13px;
}


/* =========================================
   INFORMACIÓN DEL EVENTO
========================================= */

.event-section {
    width: 100%;

    padding: 0 20px 60px;

    background: #fff0f3;
}


.event-card {
    max-width: 500px;

    margin: 0 auto;

    padding: 38px 24px 32px;

    background: rgba(255, 255, 255, 0.72);

    border-radius: 28px;

    border: 1px solid rgba(201, 139, 50, 0.18);

    box-shadow:
        0 10px 35px rgba(160, 20, 75, 0.07);

    text-align: center;
}


/* =========================================
   ICONO DE UBICACIÓN
========================================= */

.event-icon {
    width: 58px;

    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #c51658;

    color: white;

    box-shadow:
        0 7px 18px rgba(197, 22, 88, 0.25);
}


/* PIN SVG */

.event-icon svg {
    width: 34px;

    height: 34px;

    display: block;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================
   SALÓN LUXOS
========================================= */

.event-card h2 {
    font-family: 'Great Vibes', cursive;

    font-size: 48px;

    font-weight: 400;

    color: #c51658;

    line-height: 1;

    margin: 10px 0 8px;
}


/* CIUDAD */

.event-location {
    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;

    font-weight: 500;

    color: #222;

    margin: 0;
}


/* =========================================
   ORNAMENTO EVENTO
========================================= */

.event-card .section-ornament {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin: 18px 0 25px;

    color: #c58b3a;
}

.event-card .section-ornament span {
    width: 55px;

    height: 1px;

    background: #c58b3a;
}

.event-card .section-ornament b {
    font-size: 13px;

    font-weight: 400;
}


/* =========================================
   HORARIOS
========================================= */

.event-schedule {
    margin-top: 10px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.schedule-item {
    display: flex;

    align-items: center;

    text-align: left;

    padding: 8px 10px;
}


.schedule-icon {
    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(197, 139, 58, 0.12);

    color: #c58b3a;

    font-size: 20px;

    margin-right: 16px;
}


.schedule-time {
    display: flex;

    align-items: center;

    gap: 14px;

    font-family: 'Cormorant Garamond', serif;
}


.schedule-time strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    font-weight: 700;

    color: #c51658;

    letter-spacing: 0.2px;

    min-width: 72px;
}


.schedule-time span {
    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    font-weight: 500;

    color: #222;
}


/* =========================================
   BOTÓN UBICACIÓN
========================================= */

.location-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 20px;

    padding: 11px 28px;

    background: #c51658;

    color: #ffffff;

    border: none;

    border-radius: 30px;

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.3px;

    text-decoration: none;

    box-shadow:
        0 5px 12px rgba(197, 22, 88, 0.25);

    cursor: pointer;
}


/* =========================================
   GALERÍA
========================================= */

.gallery-section {
    width: 100%;

    padding: 20px 0 60px;

    background: #fff0f3;

    overflow: hidden;
}


.gallery-header {
    text-align: center;

    padding: 0 20px;
}


.gallery-header h2 {
    margin: 0;

    color: #b71955;

    font-size: 28px;

    font-weight: 400;
}


/* =========================================
   CARRUSEL
========================================= */

.gallery-carousel {
    position: relative;

    width: 100%;

    margin-top: 20px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* IMAGEN PRINCIPAL */

.gallery-main {
    width: 72vw;

    max-width: 340px;

    height: 430px;

    border-radius: 22px;

    overflow: hidden;

    background: #eadde1;

    box-shadow:
        0 10px 30px rgba(120, 0, 40, 0.15);

    position: relative;

    z-index: 2;
}


.gallery-main img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    cursor: pointer;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   FLECHAS
========================================= */

.gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #c91f62;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 34px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(130, 0, 50, 0.20);
}


.gallery-prev {
    left: 12px;
}


.gallery-next {
    right: 12px;
}


/* =========================================
   INDICADORES
========================================= */

.gallery-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 22px;
}


.gallery-dot {
    width: 9px;

    height: 9px;

    border-radius: 50%;

    border: 2px solid #c91f62;

    background: transparent;

    display: block;
}


.gallery-dot.active {
    background: #c91f62;
}


/* =========================================
   TEXTO GALERÍA
========================================= */

.gallery-hint {
    margin: 22px 20px 0;

    text-align: center;

    color: #4d3b40;

    font-family: 'Cormorant Garamond', serif;

    font-size: 15px;
}


/* =========================================
   DESKTOP GALERÍA
========================================= */

@media (min-width: 768px) {

    .gallery-main {
        width: 340px;

        height: 500px;
    }

}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    background: rgba(45, 10, 25, 0.94);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;
}


/* IMAGEN GRANDE */

.lightbox-image {
    max-width: 90vw;

    max-height: 88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.45);

    user-select: none;

    -webkit-user-drag: none;
}


/* =========================================
   CERRAR
========================================= */

.lightbox-close {
    position: absolute;

    top: 18px;

    right: 20px;

    z-index: 10;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: white;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   FLECHAS LIGHTBOX
========================================= */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: rgba(201, 31, 98, 0.9);

    color: white;

    font-size: 38px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}


.lightbox-prev {
    left: 15px;
}


.lightbox-next {
    right: 15px;
}


/* =========================================
   MÓVIL LIGHTBOX
========================================= */

@media (max-width: 767px) {

    .gallery-lightbox {
        padding: 15px;
    }


    .lightbox-image {
        max-width: 94vw;

        max-height: 82vh;

        border-radius: 8px;
    }


    .lightbox-close {
        top: 15px;

        right: 15px;
    }


    .lightbox-prev,
    .lightbox-next {
        width: 42px;

        height: 42px;

        font-size: 32px;
    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }

}


/* =========================================
   FOTOS LATERALES
========================================= */

.gallery-carousel {
    position: relative;

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    padding: 0;
}


/* FOTO IZQUIERDA */

.gallery-carousel::before {

    content: "";

    position: absolute;

    top: 50%;

    left: -25px;

    width: 65px;

    height: 300px;

    transform: translateY(-50%);

    border-radius: 18px;

    background-image:
        linear-gradient(
            rgba(80, 0, 30, 0.18),
            rgba(80, 0, 30, 0.18)
        ),
        var(--gallery-prev-image);

    background-size: cover;

    background-position: center;

    opacity: 0.75;

    z-index: 1;
}


/* FOTO DERECHA */

.gallery-carousel::after {

    content: "";

    position: absolute;

    top: 50%;

    right: -25px;

    width: 65px;

    height: 300px;

    transform: translateY(-50%);

    border-radius: 18px;

    background-image:
        linear-gradient(
            rgba(80, 0, 30, 0.18),
            rgba(80, 0, 30, 0.18)
        ),
        var(--gallery-next-image);

    background-size: cover;

    background-position: center;

    opacity: 0.75;

    z-index: 1;
}


/* FOTO PRINCIPAL */

.gallery-main {
    position: relative;

    z-index: 3;
}


/* =========================================
   CÓDIGO DE VESTIMENTA
========================================= */

.dress-section {
    padding: 35px 20px;
}


.dress-card {
    background: #fffafa;

    border-radius: 28px;

    padding: 32px 24px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(180, 70, 110, 0.10);
}


.dress-icon {
    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #d9a34a,
            #b87824
        );

    color: white;

    border-radius: 50%;

    font-size: 27px;

    box-shadow:
        0 7px 15px rgba(180, 120, 40, 0.25);
}


.dress-card h2 {
    margin: 0;

    color: #c2185b;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: normal;
}


.dress-card .section-ornament {
    margin: 18px 0 25px;
}


.dress-message {
    margin: 0;

    color: #c2185b;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: 1.35;
}


.dress-message strong {
    font-weight: normal;
}


/* =========================================
   SUGERENCIA DE REGALOS
========================================= */

.gift-section {
    padding: 0 20px 35px;
}


.gift-card {
    background: #fffafa;

    border-radius: 28px;

    padding: 32px 24px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(180, 70, 110, 0.10);
}


.gift-icon {
    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #d9a34a,
            #b87824
        );

    color: white;

    border-radius: 50%;

    font-size: 27px;

    box-shadow:
        0 7px 15px rgba(180, 120, 40, 0.25);
}


.gift-card h2 {
    margin: 0;

    color: #c2185b;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: normal;
}


.gift-card .section-ornament {
    margin: 18px 0 25px;
}


.gift-message {
    margin: 0;

    color: #c2185b;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: 1.35;
}


/* =========================================
   CONFIRMACIÓN
========================================= */

.rsvp-section {
    padding: 0 20px 35px;
}


.rsvp-card {
    background: #fffafa;

    border-radius: 28px;

    padding: 32px 24px;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(180, 70, 110, 0.10);
}


.rsvp-icon {
    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #d52b69,
            #b81755
        );

    color: white;

    border-radius: 50%;

    font-size: 27px;

    box-shadow:
        0 7px 15px rgba(190, 20, 90, 0.25);
}


.rsvp-card h2 {
    margin: 0 0 25px;

    color: #c2185b;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: normal;
}


.rsvp-button {
    border: none;

    border-radius: 30px;

    padding: 15px 30px;

    background:
        linear-gradient(
            145deg,
            #d52b69,
            #b81755
        );

    color: white;

    font-family: Georgia, serif;

    font-size: 15px;

    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow:
        0 8px 18px rgba(190, 20, 90, 0.25);
}


.rsvp-button:active {
    transform: scale(0.97);
}


/* =========================================
   CIERRE
========================================= */

.closing-section {
    padding: 20px 20px 70px;

    background:
        linear-gradient(
            180deg,
            #fff0f3 0%,
            #fdf5f6 100%
        );

    text-align: center;
}


.closing-card {
    max-width: 500px;

    margin: 0 auto;

    padding: 45px 25px 50px;
}


.closing-small {
    margin: 0 0 18px;

    color: #b71955;

    font-size: 19px;

    font-style: italic;
}


.closing-card h2 {
    margin: 0;

    color: #b71955;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    line-height: 1.35;

    font-weight: 400;
}


.closing-card h2 span {
    color: #c58b3a;

    font-size: 20px;
}


.closing-initial {
    width: 95px;

    height: 95px;

    margin: 30px auto 18px;

    border-radius: 50%;

    border: 1px solid rgba(197, 139, 58, 0.5);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #c58b3a;

    font-family: Georgia, serif;

    font-size: 48px;

    font-style: italic;
}


.closing-flowers {
    color: #c58b3a;

    font-size: 45px;

    margin: 5px 0 25px;
}


.closing-message {
    max-width: 330px;

    margin: 0 auto;

    color: #5a454b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   TIPOGRAFÍA ESTILO MOCKUP
========================================= */

body {
    font-family: 'Cormorant Garamond', serif;
}


/* TÍTULOS */

.welcome-card h2,
.countdown-card h2,
.gallery-header h2,
.dress-message,
.event-location {
    font-family: 'Cormorant Garamond', serif;
}


/* =========================================
   SALÓN LUXOS
========================================= */

.event-card h2 {
    font-family: 'Great Vibes', cursive;

    font-size: 48px;

    font-weight: 400;

    color: #c51658;

    line-height: 1;

    margin-bottom: 8px;
}


/* CIUDAD */

.event-location {
    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;

    font-weight: 500;

    color: #222;
}


/* =========================================
   HORARIOS
========================================= */

.schedule-time {
    font-family: 'Cormorant Garamond', serif;
}


.schedule-time strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    font-weight: 700;

    color: #c51658;

    letter-spacing: 0.2px;
}


.schedule-time span {
    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    font-weight: 500;

    color: #222;
}


/* =========================================
   TÍTULOS DE SECCIÓN
========================================= */

.countdown-card h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 27px;

    font-weight: 600;

    letter-spacing: 0.5px;

    color: #c51658;
}

.gallery-header h2 {
    font-family: 'Great Vibes', cursive;

    font-size: 40px;

    font-weight: 400;

    letter-spacing: 0.5px;

    color: #c51658;
}

/* =========================================
   TEXTO GENERAL
========================================= */

.welcome-card p,
.event-card p,
.gallery-hint {
    font-family: 'Cormorant Garamond', serif;
}


/* =========================================
   FECHA DEL EVENTO
========================================= */

.countdown-date strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 24px;

    font-weight: 600;

    color: #c51658;

    white-space: nowrap;

    line-height: 1;
}


/* =========================================
   BOTÓN UBICACIÓN
========================================= */

.location-button {
    font-family: 'Montserrat', sans-serif;

    font-weight: 600;

    letter-spacing: 0.3px;
}

/* =========================================
   RESTAURAR TARJETA SALÓN LUXOS
========================================= */

.event-section {
    width: 100%;
    padding: 0 20px 60px;
    background: #fff0f3;
}

.event-card {
    max-width: 500px;
    margin: 0 auto;

    padding: 38px 24px 32px;

  background: #ffe0ea;

    border-radius: 28px;

    border: 1px solid rgba(201, 139, 50, 0.18);

    box-shadow:
        0 10px 35px rgba(160, 20, 75, 0.07);

    text-align: center;
}


/* ICONO */

.event-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c51658;

    color: white;

    box-shadow:
        0 7px 18px rgba(197, 22, 88, 0.25);
}


/* PIN */

.event-icon svg {
    width: 34px;
    height: 34px;

    display: block;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SALÓN LUXOS */

.event-card h2 {
    font-family: 'Great Vibes', cursive;

    font-size: 48px;
    font-weight: 400;

    color: #c51658;

    line-height: 1;

    margin: 10px 0 8px;
}


/* CIUDAD */

.event-location {
    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;
    font-weight: 500;

    color: #222;

    margin: 0;
}


/* ORNAMENTO */

.event-card .section-ornament {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 18px 0 25px;
}

.event-card .section-ornament span {
    width: 55px;
    height: 1px;

    background: #c58b3a;
}

.event-card .section-ornament b {
    font-size: 13px;

    font-weight: 400;
}


/* HORARIOS */

.event-schedule {
    margin-top: 10px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.schedule-item {
    display: flex;

    align-items: center;

    text-align: left;

    padding: 8px 10px;
}

.schedule-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(197, 139, 58, 0.12);

    color: #c58b3a;

    font-size: 20px;

    margin-right: 16px;
}

.schedule-time {
    display: flex;

    align-items: center;

    gap: 14px;

    font-family: 'Cormorant Garamond', serif;
}

.schedule-time strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    font-weight: 700;

    color: #c51658;

    min-width: 72px;
}

.schedule-time span {
    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    font-weight: 500;

    color: #222;
}


/* BOTÓN */

.location-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 20px;

    padding: 11px 28px;

    background: #c51658;

    color: #ffffff;

    border: none;

    border-radius: 30px;

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.3px;

    text-decoration: none;

    box-shadow:
        0 5px 12px rgba(197, 22, 88, 0.25);

    cursor: pointer;
}

/* =========================================
   CORRECCIÓN FINAL — SALÓN LUXOS
========================================= */

.event-card {
    max-width: 500px;
    margin: 0 auto;

    padding: 38px 24px 32px;

    background: rgba(255, 255, 255, 0.72);

    border-radius: 28px;

    border: 1px solid rgba(201, 139, 50, 0.18);

    box-shadow:
        0 10px 35px rgba(160, 20, 75, 0.07);

    text-align: center;
}


/* FUENTE ORIGINAL DE SALÓN LUXOS */

.event-card h2 {
    font-family: "Ballet", cursive;

    font-size: 48px;
    font-weight: 400;

    color: #b71955;

    line-height: 1;

    margin: 10px 0 2px;
}

/* =========================================
   SALÓN LUXOS — VERSIÓN ORIGINAL
========================================= */

.event-section {
    width: 100%;
    padding: 0 20px 60px;
    background: #fff0f3;
}

.event-card {
    max-width: 500px;
    margin: 0 auto;

    padding: 38px 24px 32px;

    background: rgba(255, 255, 255, 0.72);

    border-radius: 28px;

    border: 1px solid rgba(201, 139, 50, 0.18);

    box-shadow:
        0 10px 35px rgba(160, 20, 75, 0.07);

    text-align: center;
}


/* PIN */

.event-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c51658;

    color: white;

    box-shadow:
        0 7px 18px rgba(197, 22, 88, 0.25);
}

.event-icon svg {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SALÓN LUXOS */

.event-card h2 {
    font-family: 'Great Vibes', cursive !important;

    font-size: 48px !important;

    font-weight: 400 !important;

    color: #b71955 !important;

    line-height: 1 !important;

    margin: 10px 0 2px !important;
}


/* CIUDAD */

.event-location {
    font-family: "Cormorant Garamond", serif !important;

    font-size: 17px !important;

    font-weight: 600 !important;

    color: #222 !important;

    margin-top: 2px !important;
}

.gift-message {
    font-family: 'Great Vibes', cursive !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    color: #b71955 !important;
    line-height: 1 !important;
}

.dress-message {
    font-family: 'Great Vibes', cursive !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    color: #b71955 !important;
    line-height: 1 !important;
}

.parent-initial {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.55em !important;
    font-weight: 400 !important;
    color: #c51658 !important;
    line-height: 0.8;
}

.parents-second-line {
    display: inline-block;
    margin-top: 8px;
}

.parents-second-line {
    display: inline-block;
    margin-top: 8px;

    /* conservar el estilo original */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* =========================================
   CIERRE — NUEVO DISEÑO VISUAL
========================================= */

.closing-section {
    position: relative;

    width: 100%;

    padding: 35px 0 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 240, 244, 0.95) 55%,
            #fce8ed 100%
        );

    text-align: center;
}


/* =========================================
   TARJETA / CONTENIDO
========================================= */

.closing-card {
    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    padding: 10px 30px 25px;
}


/* =========================================
   CON MUCHO AMOR
========================================= */

.closing-small {
    margin: 0 0 18px;

    color: #4b3038;

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    font-style: normal;

    letter-spacing: 0.2px;
}


.closing-heart {
    color: #c51658;

    font-size: 18px;

    margin-left: 5px;
}


/* =========================================
   NOMBRES
   NO CAMBIA EL ESTILO QUE YA TENEMOS
========================================= */

.closing-card h2 {
    position: relative;

    z-index: 5;

    margin: 0;

    color: #b71955;

    font-family: 'Cormorant Garamond', serif;

    font-size: 31px;

    line-height: 1.25;

    font-weight: 500;
}


.closing-card h2 > span:not(.parents-second-line):not(.parent-initial) {
    color: #c58b3a;

    font-size: 24px;
}


/* INICIALES */

.parent-initial {
    font-family: 'Great Vibes', cursive !important;

    font-size: 1.55em !important;

    font-weight: 400 !important;

    color: #c51658 !important;

    line-height: 0.8;
}


/* SEGUNDA LÍNEA */

.parents-second-line {
    display: inline-block;

    margin-top: 8px;

    font-family: inherit;

    font-size: inherit;

    font-weight: inherit;

    color: inherit;
}


/* =========================================
   MONOGRAMA
========================================= */

.closing-monogram {

    position: relative;

    width: 250px;

    height: 150px;

    margin: 25px auto 0;
}


/* =========================================
   CORONA
========================================= */

.monogram-crown {

    position: absolute;

    top: -21px;

    left: 50%;

    transform: translateX(-50%);

    color: #c58b3a;

    font-family: Georgia, serif;

    font-size: 24px;

    line-height: 1;
}


/* =========================================
   CÍRCULO DE LA N
========================================= */

.closing-initial {

    position: absolute;

    left: 50%;

    top: 22px;

    transform: translateX(-50%);

    width: 92px;

    height: 92px;

    margin: 0;

    border-radius: 50%;

    border: 2px solid rgba(197, 139, 58, 0.75);

    background:
        rgba(255, 250, 248, 0.88);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #c51658;

    font-family: 'Cormorant Garamond', serif;

    font-size: 58px;

    font-style: normal;

    font-weight: 400;

    box-shadow:
        0 4px 15px rgba(160, 80, 90, 0.08);
}


/* SEGUNDO CÍRCULO */

.closing-initial::before {

    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    border: 1px solid rgba(197, 139, 58, 0.45);
}


/* =========================================
   FLORES / ADORNOS DORADOS
========================================= */

.monogram-flourish {

    position: absolute;

    top: 68px;

    color: #c58b3a;

    font-family: Georgia, serif;

    font-size: 20px;

    white-space: nowrap;

    opacity: 0.9;
}


.monogram-flourish-left {

    right: calc(50% + 38px);

    transform: rotate(-3deg);
}


.monogram-flourish-right {

    left: calc(50% + 38px);

    transform: rotate(3deg);
}


.monogram-heart {

    position: absolute;

    top: 58px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    color: #c51658;

    font-size: 15px;
}


/* =========================================
   FLORES LATERALES
========================================= */

.closing-floral {

    position: absolute;

    z-index: 1;

    pointer-events: none;

    width: 150px;

    height: 360px;

    opacity: 0.9;
}


/* RAMA IZQUIERDA */

.closing-floral-left {

    left: -35px;

    bottom: 80px;

    transform: rotate(-5deg);

    background:

        radial-gradient(
            ellipse at 35% 85%,
            #d82d68 0 8%,
            transparent 9%
        ),

        radial-gradient(
            ellipse at 25% 78%,
            #ef668e 0 7%,
            transparent 8%
        ),

        radial-gradient(
            ellipse at 42% 68%,
            #d82d68 0 9%,
            transparent 10%
        ),

        radial-gradient(
            ellipse at 22% 57%,
            #f08aaa 0 6%,
            transparent 7%
        ),

        radial-gradient(
            ellipse at 50% 48%,
            #d82d68 0 7%,
            transparent 8%
        ),

        linear-gradient(
            110deg,
            transparent 45%,
            rgba(185, 135, 75, 0.65) 46%,
            rgba(185, 135, 75, 0.65) 48%,
            transparent 49%
        );
}


/* RAMA DERECHA */

.closing-floral-right {

    right: -35px;

    bottom: 80px;

    transform: scaleX(-1) rotate(-5deg);

    background:

        radial-gradient(
            ellipse at 35% 85%,
            #d82d68 0 8%,
            transparent 9%
        ),

        radial-gradient(
            ellipse at 25% 78%,
            #ef668e 0 7%,
            transparent 8%
        ),

        radial-gradient(
            ellipse at 42% 68%,
            #d82d68 0 9%,
            transparent 10%
        ),

        radial-gradient(
            ellipse at 22% 57%,
            #f08aaa 0 6%,
            transparent 7%
        ),

        radial-gradient(
            ellipse at 50% 48%,
            #d82d68 0 7%,
            transparent 8%
        ),

        linear-gradient(
            110deg,
            transparent 45%,
            rgba(185, 135, 75, 0.65) 46%,
            rgba(185, 135, 75, 0.65) 48%,
            transparent 49%
        );
}


/* =========================================
   FOOTER FUSCIA
========================================= */

.closing-footer {
    position: relative;
    z-index: 4;

    width: 100%;
    min-height: 150px;

    margin-top: -25px;
    padding: 55px 25px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        to bottom,
        rgba(199, 20, 91, 0) 0%,
        rgba(199, 20, 91, 0.18) 12%,
        rgba(199, 20, 91, 0.65) 32%,
        #c7145b 55%,
        #b50d4e 100%
    );

    box-shadow: none;
}


/* TEXTO DEL FOOTER */

.closing-footer p {

    margin: 0;

    color: white;

    font-family: 'Cormorant Garamond', serif;

    font-size: 23px;

    line-height: 1.25;

    font-style: italic;

    font-weight: 500;

    text-shadow:
        0 1px 4px rgba(90, 0, 30, 0.2);
}


/* =========================================
   DECORACIÓN FOOTER
========================================= */

.footer-decoration {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 16px;

    color: #e3bd72;

    font-size: 24px;
}


.footer-decoration span {

    width: 58px;

    overflow: hidden;

    color: #e3bd72;

    font-size: 27px;

    line-height: 1;
}


.footer-decoration b {

    color: #f5c9d5;

    font-size: 16px;

    font-weight: 400;
}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 500px) {

    .closing-card {

        padding-left: 20px;

        padding-right: 20px;
    }


    .closing-card h2 {

        font-size: 29px;
    }


    .closing-monogram {

        width: 235px;
    }


    .closing-floral {

        width: 125px;

        height: 330px;
    }


    .closing-floral-left {

        left: -45px;
    }


    .closing-floral-right {

        right: -45px;
    }


    .closing-footer {

        min-height: 135px;

        padding-left: 20px;

        padding-right: 20px;
    }


    .closing-footer p {

        font-size: 21px;
    }

}

/* =========================================
   AJUSTE FINAL — NOMBRES DE LOS PAPÁS
========================================= */

.closing-card h2 {
    color: #b71955 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 31px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
}


/* R, H, L y C */

.closing-card h2 .parent-initial {
    font-family: 'Great Vibes', cursive !important;
    font-size: 1.55em !important;
    font-weight: 400 !important;
    color: #c51658 !important;
    line-height: 0.8 !important;
}


/* Toda la línea de Lupita baja, SIN cambiar su tamaño */

.closing-card h2 .parents-second-line {
    display: inline-block !important;

    margin-top: 8px !important;

    font-family: 'Cormorant Garamond', serif !important;
    font-size: 31px !important;
    font-weight: 500 !important;
    color: #b71955 !important;
    line-height: 1.25 !important;
}

/* =========================================
   FLORES REALES DEL CIERRE
========================================= */

.closing-floral {
    position: absolute;
    z-index: 2;

    width: 100%;
    height: 100%;

    pointer-events: none;

    background-image: url("assets/flores-cierre.png");
    background-repeat: no-repeat;
    background-position: center 160px;
    background-size: 110% auto;

    opacity: 1;
}


/* Ocultamos el efecto floral CSS anterior */

.closing-floral-left,
.closing-floral-right {
    background-image: url("assets/flores-cierre.png");
}


/* La imagen ya contiene ambos lados,
   así que solo necesitamos una */

.closing-floral-right {
    display: none;
}

.closing-floral-left {
    left: 0;
    right: auto;
    bottom: 0;

    width: 100%;
    height: 100%;
}

.closing-floral-left {
    transform: none !important;
}

.nicole-name {
    font-family: 'Great Vibes', cursive !important;
    font-weight: 400 !important;
}

/* =========================================
   LOGO MIS XV — PORTADA
========================================= */

.mis-xv-logo {
    position: relative;

    z-index: 10;

    display: block;

    width: 320px;

    max-width: 90%;

    height: auto;

    margin: 5px auto 10px;

    opacity: 1;

    filter: drop-shadow(0 3px 5px rgba(120, 20, 60, 0.15));
}

.hero-content {
    position: relative;
    z-index: 5;
}

.mis-xv-logo {
    position: relative;
    z-index: 20;
}

/* =========================================
   POSICIÓN DEL BLOQUE PRINCIPAL DE PORTADA
========================================= */

.hero-content {
    position: relative;
    z-index: 10;

    
}


/* =========================================
   LOGO MIS XV
========================================= */

.mis-xv-logo {
    position: relative;
    z-index: 20;

    display: block;

    width: 300px;
    max-width: 88%;
    height: auto;

    margin: 0 auto;

    opacity: 1;

    filter: drop-shadow(0 3px 5px rgba(120, 20, 60, 0.15));

    transform: none;
}


/* =========================================
   ADORNO — CORAZÓN Y LÍNEAS DORADAS
========================================= */

.hero-content .ornament {
    position: relative;
    z-index: 21;

    margin-top: 350px;
}


/* =========================================
   NOMBRE DE NICOLE
========================================= */

.hero-content h2 {
    position: relative;
    z-index: 21;

    transform: none !important;

    margin-top: -150px;
}

/* =========================================
   AJUSTE FINAL — PORTADA
========================================= */

/* Regresamos el contenido a su posición normal */
.hero-content {
    position: relative;
    z-index: 10;
    transform: none !important;
}


/* =========================================
   MIS XV — INDEPENDIENTE
========================================= */

.mis-xv-logo {
    position: absolute;

    z-index: 20;

    width: 300px;
    max-width: 88%;
    height: auto;

    left: 50%;
    top: 245px;

    transform: translateX(-50%);

    margin: 0;

    display: block;

    filter: drop-shadow(
        0 3px 5px rgba(120, 20, 60, 0.15)
    );
}


/* =========================================
   CORAZÓN + LÍNEAS DORADAS
   Y NOMBRE — POSICIÓN NORMAL
========================================= */

.hero-content .ornament {
    position: relative;
    z-index: 21;

    margin-top: 5px;
}


.hero-content h2 {
    position: relative;
    z-index: 21;

    transform: none !important;
}

/* =========================================
   PORTADA — COMPOSICIÓN
========================================= */

.hero-content {
    position: relative;
    z-index: 10;
    transform: none !important;
}


/* =========================================
   MIS XV — PNG
========================================= */

.mis-xv-logo {
    position: absolute;

    z-index: 20;

    width: 350px;
    max-width: 92%;
    height: auto;

    left: 45%;
    top: 280px;

    transform: translateX(-50%);

    margin: 0;

    display: block;

    filter: drop-shadow(
        0 3px 5px rgba(120, 20, 60, 0.15)
    );
}

/* =========================================
   ANIMACIÓN SUTIL — MIS XV
========================================= */

.mis-xv-logo {
    animation: misXVFloat 5s ease-in-out infinite;
}

@keyframes misXVFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* =========================================
   NOMBRE DE NICOLE
========================================= */

.hero-content h2 {
    position: absolute;

    z-index: 30;

    left: 45%;
    top: 600px;

    width: 100%;

    margin: 0 !important;

    transform: translateX(-50%) !important;

    text-align: center;

    font-family: 'Great Vibes', cursive !important;
    font-size: 45px !important;
    font-weight: 400 !important;

    line-height: 1.05;

    color: #c51658;

    letter-spacing: 0;
}


/* Iniciales y resto del nombre */
.hero-content h2 .name-script {
    font-family: 'Great Vibes', cursive !important;
    font-size: inherit !important;
    color: inherit !important;
}


/* =========================================
   LÍNEAS + CORAZÓN
========================================= */

.hero-content .ornament {
    position: absolute;

    z-index: 31;

    left:45%;
    top: 750px;

    width: 100%;

    margin: 0;

    transform: translateX(-50%);
}



/* El contenido de texto permanece encima del degradado */
.hero-content {
    position: relative;
    z-index: 10;
}

/* =========================================
   DEGRADADO SUAVE SOBRE LA FOTO
========================================= */

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 245, 248, 0) 45%,
        rgba(255, 245, 248, 0.02) 50%,
        rgba(255, 245, 248, 0.08) 56%,
        rgba(255, 245, 248, 0.18) 62%,
        rgba(255, 245, 248, 0.35) 68%,
        rgba(255, 245, 248, 0.55) 74%,
        rgba(255, 245, 248, 0.75) 80%,
        rgba(255, 245, 248, 0.90) 86%,
        #fff5f8 94%,
        #fff5f8 100%
    );
}

/* =========================================
   HERO — ELIMINAR BORDE LATERAL
========================================= */

.hero {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-image {
    left: 0;
    right: 0;
    width: 100%;
}

/* =========================================
   ELIMINAR BORDE LATERAL DEL HERO
========================================= */

body {
    margin: 0;
    padding: 0;
    background: #f8e8eb;
}


.hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}



/* =========================================
   MÓVIL — SIN MÁRGENES LATERALES
========================================= */

@media (max-width: 767px) {

    main,
    .hero,
    .welcome-section,
    .countdown-section,
    .event-section,
    .gallery-section,
    .dress-section,
    .gift-section,
    .rsvp-section,
    .closing-section {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =========================================
   CONTENEDOR GENERAL — SIN BORDES LATERALES
========================================= */

html,
body {
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

main {
    display: block;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================
   SECCIONES A TODO EL ANCHO
========================================= */

main > section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

html,
body {
    background: #fff0f3 !important;
}

/* =========================================
   HERO — OCUPAR TODO EL ANCHO
========================================= */

.hero {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* =========================================
   ANIMACIONES SUAVES
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ocultar indicador de scroll */
.scroll-indicator {
    display: none !important;
}

/* =========================================
   COPYRIGHT
========================================= */

.copyright {
    margin: 12px 0 0;
    padding: 0;

    text-align: center;

    font-family: 'Cormorant Garamond', serif;
    font-size: 9px;
    letter-spacing: 0.4px;

    color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   PANTALLA DE ENTRADA — TELÓN
========================================= */

#entrance-screen {
    position: fixed;
    inset: 0;

    z-index: 99999;

    overflow: hidden;

    background: #18060d;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   TELONES
========================================= */

.curtain {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 52%;

    z-index: 2;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 0px,
            rgba(255,255,255,0.01) 12px,
            rgba(0,0,0,0.12) 25px,
            rgba(255,255,255,0.03) 38px
        ),
        linear-gradient(
            90deg,
            #650525,
            #b20d50 25%,
            #8b0738 50%,
            #c3135b 75%,
            #680525
        );

    box-shadow:
        inset 0 0 50px rgba(0,0,0,0.45);
        
    transition:
        transform 1.6s cubic-bezier(.77,0,.18,1);
}


.curtain-left {
    left: 0;

    border-right: 2px solid rgba(255,215,150,0.25);
}


.curtain-right {
    right: 0;

    border-left: 2px solid rgba(255,215,150,0.25);
}


/* =========================================
   CONTENIDO CENTRAL
========================================= */

.entrance-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;

    transition:
        opacity 0.5s ease,
        transform 0.8s ease;
}


.entrance-small {
    margin: 0 0 8px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 17px;

    letter-spacing: 1px;

    color: #f5d6df;
}


.entrance-content h1 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 72px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #f7b4c9;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);
}


.entrance-name {
    margin: 5px 0 28px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    letter-spacing: 1px;

    color: #ffffff;
}


/* =========================================
   BOTÓN ENTRAR
========================================= */

#enter-invitation {
    border: 1px solid #e3b76b;

    background:
        linear-gradient(
            135deg,
            #d9a94f,
            #f0cf88,
            #c9943d
        );

    color: #65102e;

    padding: 13px 42px;

    border-radius: 30px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.3);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


#enter-invitation:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.4);
}


#enter-invitation:active {
    transform: scale(0.97);
}


.entrance-hint {
    margin-top: 14px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 12px;

    color: rgba(255,255,255,0.65);
}


/* =========================================
   ANIMACIÓN DE APERTURA
========================================= */

#entrance-screen.open .curtain-left {
    transform: translateX(-100%);
}


#entrance-screen.open .curtain-right {
    transform: translateX(100%);
}


#entrance-screen.open .entrance-content {
    opacity: 0;

    transform: scale(0.92);
}


/* =========================================
   OCULTAR PANTALLA AL TERMINAR
========================================= */

#entrance-screen.finished {
    display: none;
}

.entrance-logo {
    display: block;

    width: 120px;
    height: auto;

    margin: 50px auto 0;

    opacity: 0.8;

    filter: brightness(0) invert(1);

    transition: opacity 0.3s ease;
}

/* =========================================
   PÉTALOS CAYENDO
========================================= */

.petals-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    pointer-events: none;
    overflow: hidden;

    z-index: 999;

}

.petal {
    position: absolute;

    top: -30px;

    width: 10px;
    height: 16px;

    background: rgba(245, 150, 180, 0.72);

    /* Forma de pétalo */
    clip-path: polygon(
        50% 0%,
        78% 12%,
        100% 42%,
        82% 75%,
        50% 100%,
        18% 75%,
        0% 42%,
        22% 12%
    );

    opacity: 0;

    animation-name: petalFall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;

    filter: blur(0.2px);
}

@keyframes petalFall {

    0% {
        transform:
            translate3d(0, -30px, 0)
            rotate(0deg);

        opacity: 0;
    }

    10% {
        opacity: 0.75;
    }

    50% {
        transform:
            translate3d(35px, 50vh, 0)
            rotate(180deg);
    }

    100% {
        transform:
            translate3d(-30px, 110vh, 0)
            rotate(360deg);

        opacity: 0;
    }
}
/* ==========================================
   DESKTOP - INVITACIÓN CENTRADA
   NO AFECTA CELULAR
========================================== */

@media (min-width: 768px) {

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    main {
        width: 520px !important;
        max-width: 520px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }

    main > section,
    main > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

}