/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimización de rendimiento para scroll */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Paleta de colores Beso Infinito */
:root {
    --color-primario: #D4AF8C;        /* Dorado suave */
    --color-secundario: #8B4B6B;      /* Rosa profundo */
    --color-acento: #F4E4C1;          /* Crema dorada */
    --color-texto: #5D4E37;           /* Marrón cálido */
    --color-texto-claro: #8B7355;     /* Marrón claro */
    --color-blanco: #FEFCF8;          /* Blanco cálido */
    --color-rosa-suave: #E8C5B0;      /* Rosa suave */
    --color-dorado: #B8860B;          /* Dorado clásico */
    --color-rosa-profundo: #A0522D;   /* Rosa profundo */
    --color-crema: #FFF8DC;           /* Crema */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--color-blanco);
    background: #4B0C0C;
    overflow-x: hidden;
}

/* Welcome Screen Styles */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-secundario) 0%, var(--color-rosa-profundo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.welcome-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.welcome-content {
    text-align: center;
    color: var(--color-blanco);
    z-index: 10;
    position: relative;
    max-width: 600px;
    padding: 2rem;
    /* animation: fadeInUp 0.5s ease-out; */
    pointer-events: auto;
}

.welcome-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    z-index: 1;
}

.welcome-hearts i {
    position: absolute;
    color: rgba(225, 169, 77, 0.6);
    text-shadow: 0 0 10px rgba(225, 169, 77, 0.3);
}

.welcome-hearts i:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
    animation-delay: 0s;
    font-size: 1.5rem;
}

.welcome-hearts i:nth-child(2) {
    top: 25%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 2rem;
}

.welcome-hearts i:nth-child(3) {
    top: 60%;
    left: 20%;
    animation: float3 7s ease-in-out infinite;
    animation-delay: 2s;
    font-size: 1.2rem;
}

.welcome-hearts i:nth-child(4) {
    top: 70%;
    right: 25%;
    animation: float4 9s ease-in-out infinite;
    animation-delay: 3s;
    font-size: 1.8rem;
}

.welcome-hearts i:nth-child(5) {
    top: 40%;
    left: 50%;
    animation: float5 6s ease-in-out infinite;
    animation-delay: 4s;
    font-size: 1.3rem;
}

.welcome-hearts i:nth-child(6) {
    top: 20%;
    left: 70%;
    animation: float6 8s ease-in-out infinite;
    animation-delay: 5s;
    font-size: 1.6rem;
}

.welcome-hearts i:nth-child(7) {
    top: 80%;
    left: 60%;
    animation: float7 7s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 1.1rem;
}

.welcome-hearts i:nth-child(8) {
    top: 35%;
    left: 5%;
    animation: float8 9s ease-in-out infinite;
    animation-delay: 3.5s;
    font-size: 1.4rem;
}

.welcome-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /* animation: fadeInUp 0.5s ease-out 0.1s both; */
}

.couple-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    /* animation: fadeInUp 0.5s ease-out 0.2s both; */
}

.bride-welcome, .groom-welcome {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ampersand-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dorado);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.welcome-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    /* animation: fadeInUp 0.5s ease-out 0.3s both; */
}

.audio-selection {
    /* animation: fadeInUp 0.5s ease-out 0.4s both; */
    position: relative;
    z-index: 50;
}

.audio-selection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.audio-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.audio-btn {
    background: rgba(244, 228, 193, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 228, 193, 0.4);
    color: var(--color-blanco);
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    justify-content: center;
    pointer-events: auto !important;
    z-index: 100 !important;
    position: relative;
}

.audio-btn:hover {
    background: rgba(244, 228, 193, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.audio-btn-yes:hover {
    border-color: var(--color-dorado);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.audio-btn-no:hover {
    border-color: var(--color-rosa-profundo);
    box-shadow: 0 10px 25px rgba(160, 82, 45, 0.3);
}

.audio-btn i {
    font-size: 1.3rem;
}

.welcome-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
    pointer-events: none !important;
}

.welcome-leaf {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--color-primario), var(--color-acento));
    border-radius: 0 100% 0 100%;
    opacity: 0.7;
    animation: leafFloat 8s ease-in-out infinite;
    pointer-events: none !important;
}

.welcome-leaf-1 {
    bottom: 20px;
    left: 15%;
    animation-delay: 0s;
}

.welcome-leaf-2 {
    bottom: 30px;
    right: 20%;
    animation-delay: 2s;
    transform: scale(0.8);
}

.welcome-leaf-3 {
    bottom: 15px;
    right: 15%;
    animation-delay: 4s;
    transform: scale(1.1);
}

/* Main Content Styles */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.show {
    opacity: 1;
}

/* Welcome Screen Exit Animation */
.welcome-screen.exit {
    /* animation: slideOut 0.8s ease-in-out forwards; */
}

/* @keyframes slideOut eliminado */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: visible; /* Cambiado para que la imagen decorativa sea visible */
    padding: 0;
    margin: 0;
    transform: translateZ(0);
    will-change: transform;
}


/* Hero Layout unificado con curva */
.hero-layout {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #4B0C0C;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
    isolation: isolate;
    z-index: 1; /* Debajo de la imagen decorativa */
}

/* Columna izquierda: Imagen de manos con anillos */
.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.rings-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: circle(70% at 20% 50%);
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
}

.rings-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    clip-path: circle(70% at 20% 50%);
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
}

/* Columna derecha: Fondo vino oscuro */
.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #4B0C0C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    z-index: 2;
    clip-path: circle(70% at 80% 50%);
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    isolation: isolate;
}

/* Imagen de rosas */
.roses-image-container {
    position: absolute;
    top: 0;
    right: 4rem;
    z-index: 10;
    max-width: 600px;
    max-height: 600px;
}

.roses-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
    /* animation: fadeInUp 0.5s ease-out 0.1s both; */
    transform: rotate(60deg) !important;
}

/* Caja con fecha */
.date-box {
    background: transparent;
    padding: 0.4rem 1.8rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    /* animation: fadeInUp 0.5s ease-out 0.1s both; */
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.date-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-blanco);
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
}

/* Nombres de los novios */
.couple-names {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    /* animation: fadeInUp 0.5s ease-out 0.2s both; */
}

.bride-name, .groom-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #E1A94D; /* Dorado específico */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1;
}

.ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #E1A94D; /* Dorado específico */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Mensaje de bienvenida */
.welcome-message {
    text-align: center;
    max-width: 500px;
    /* animation: fadeInUp 0.5s ease-out 0.3s both; */
}

.welcome-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--color-blanco);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Dancing Script', cursive;
    letter-spacing: 0.5px;
}

.quote-mark {
    font-size: 4rem;
    color: #E1A94D;
    font-family: 'Dancing Script', cursive;
    line-height: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 400;
}

.quote-mark:first-child {
    margin-right: 0.3rem;
}

.quote-mark:last-child {
    margin-left: 0.3rem;
}

.quote-left, .quote-right {
    font-size: 2.5rem;
    color: #E1A94D; /* Dorado específico */
    font-family: 'Dancing Script', cursive;
    line-height: 0;
    vertical-align: top;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 400;
}

.quote-left {
    margin-right: 0.5rem;
}

.quote-right {
    margin-left: 0.5rem;
}

/* Hero Decorative Overlay */
.hero-decorative-overlay {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-union-image {
    width: 100vw;
    height: auto;
    max-width: none;
    object-fit: cover;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: all 0.3s ease;
}

/* Decorative Line Blanca */
.decorative-line-blanca {
    background: #4B0C0C;
    padding: 3rem 0;
    position: relative;
}

.line-content-blanca {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.line-left-blanca, .line-right-blanca {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FEFCF8, #FEFCF8, transparent);
    border-radius: 2px;
}

.line-center-blanca {
    margin: 0 2rem;
    background: #FEFCF8;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(254, 252, 248, 0.3);
    animation: heartPulseWhite 2s ease-in-out infinite;
}

.line-center-blanca i {
    color: #4B0C0C;
    font-size: 1.5rem;
}

@keyframes heartPulseWhite {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(254, 252, 248, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(254, 252, 248, 0.5);
    }
}


/* Forzar visibilidad inmediata de TODAS las secciones */
* {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    animation: none !important;
}

/* Excepción para corazones de bienvenida - permitir animaciones */
.welcome-hearts i {
    animation: inherit !important;
}

.welcome-hearts i:nth-child(1) {
    animation: heartMove 3s ease-in-out infinite !important;
}

.welcome-hearts i:nth-child(2) {
    animation: heartMove 4s ease-in-out infinite !important;
    animation-delay: 0.5s;
}

.welcome-hearts i:nth-child(3) {
    animation: heartMove 3.5s ease-in-out infinite !important;
    animation-delay: 1s;
}

.welcome-hearts i:nth-child(4) {
    animation: heartMove 4.5s ease-in-out infinite !important;
    animation-delay: 1.5s;
}

.welcome-hearts i:nth-child(5) {
    animation: heartMove 3s ease-in-out infinite !important;
    animation-delay: 2s;
}

.welcome-hearts i:nth-child(6) {
    animation: heartMove 4s ease-in-out infinite !important;
    animation-delay: 2.5s;
}

.welcome-hearts i:nth-child(7) {
    animation: heartMove 3.5s ease-in-out infinite !important;
    animation-delay: 3s;
}

.welcome-hearts i:nth-child(8) {
    animation: heartMove 4.5s ease-in-out infinite !important;
    animation-delay: 3.5s;
}

/* Eliminar cualquier efecto de scroll en elementos específicos */
.ceremony-section,
.reception-section,
.info-section,
.gallery-section,
.gifts-section,
.rsvp-section,
.footer,
.countdown-section,
.countdown-container,
.countdown-message,
.countdown-ending,
.countdown-text-full,
.hero-decorative-overlay,
.hero-union-image,
.event-details,
.maps-link,
.decorative-union-ceremony-info,
.union-container,
.union-hearts,
.heart,
.union-line,
.union-text,
.final-message,
.final-container,
.final-heart,
.final-names,
.final-bride,
.final-groom,
.final-ampersand,
.final-date,
.info-card,
.gallery-item,
.gift-option {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
}





/* Hero Decoration */
.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-primario), var(--color-acento));
    border-radius: 0 100% 0 100%;
    opacity: 0.7;
    animation: leafFloat 8s ease-in-out infinite;
}

.leaf-1 {
    bottom: 20px;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    bottom: 40px;
    right: 20%;
    animation-delay: 2s;
    transform: scale(0.8);
}

.leaf-3 {
    bottom: 10px;
    right: 10%;
    animation-delay: 4s;
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E1A94D; /* Mismo color que .couple-names */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title i {
    margin-right: 0;
    margin-bottom: 1rem;
    color: #E1A94D; /* Mismo color dorado que el título */
}

.section-title .section-icon {
    width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secundario), var(--color-dorado));
    border-radius: 2px;
}

/* Decorative Line */
.decorative-line {
    background: #4B0C0C;
    padding: 3rem 0;
    position: relative;
}

.line-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.line-left, .line-right {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E1A94D, #E1A94D, transparent);
    border-radius: 2px;
}

.line-center {
    margin: 0 2rem;
    background: #E1A94D;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(225, 169, 77, 0.3);
    animation: heartPulse 2s ease-in-out infinite;
}

.line-center i {
    color: #4B0C0C;
    font-size: 1.5rem;
}

@keyframes heartPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(225, 169, 77, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(225, 169, 77, 0.5);
    }
}


/* Ceremony and Reception Sections */
.ceremony-section {
    background: #4B0C0C;
    padding-top: 0;
}

.ceremony-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.reception-section {
    background: #4B0C0C;
}

.reception-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Date Event Card */
.date-event-card {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.date-intro {
    font-size: 3.5rem;
    color: #d4af37;
    font-family: 'Pinyon Script', cursive;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.date-day {
    font-size: 1.8rem;
    color: #f5e6d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.date-number {
    font-size: 6rem;
    color: #f5e6d3;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-month {
    font-size: 4.5rem;
    color: #d4af37;
    font-style: normal;
    margin: 0.5rem 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Opciones alternativas de fuentes manuscritas - descomenta la que quieras usar */

/* Opción 1: Great Vibes
.date-month {
    font-size: 3rem;
    color: #d4af37;
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    margin: 0.5rem 0;
    font-weight: 400;
}
*/

/* Opción 2: Alex Brush
.date-month {
    font-size: 3rem;
    color: #d4af37;
    font-family: 'Alex Brush', cursive;
    font-style: normal;
    margin: 0.5rem 0;
    font-weight: 400;
}
*/

.date-year {
    font-size: 2rem;
    color: #f5e6d3;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 300;
}

.date-time {
    font-size: 1.3rem;
    color: #f5e6d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Location Event Card */
.location-event-card {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.location-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.location-title {
    font-size: 1.2rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-name {
    font-size: 4rem;
    color: #d4af37;
    font-family: 'Pinyon Script', cursive;
    font-style: normal;
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.location-address {
    font-size: 1.1rem;
    color: #f5e6d3;
    margin: 1rem 0 2rem 0;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
}

.location-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #aa8b2e 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.location-button i {
    margin-right: 0.5rem;
}

.event-details {
    display: flex;
    align-items: center;
    background: var(--color-blanco);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-details:hover {
    transform: translateY(-5px);
}

.event-icon {
    background: linear-gradient(45deg, var(--color-secundario), var(--color-dorado));
    color: var(--color-blanco);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.event-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-texto);
    margin-bottom: 0.5rem;
}

.event-info p {
    color: var(--color-texto-claro);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E1A94D;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(225, 169, 77, 0.1);
    border: 1px solid rgba(225, 169, 77, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.maps-link:hover {
    background: rgba(225, 169, 77, 0.2);
    border-color: #E1A94D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 169, 77, 0.3);
}

.maps-link i {
    font-size: 0.9rem;
}

/* Decorative Union between Ceremony and Info */
.decorative-union-ceremony-info {
    background: linear-gradient(135deg, #F4B976 0%, #E1A94D 50%, #F4B976 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.union-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.union-hearts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.heart {
    width: 60px;
    height: 60px;
    background: #4B0C0C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(75, 12, 12, 0.4);
    animation: heartPulse 2s ease-in-out infinite;
}

.heart i {
    color: #F4B976;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heart-1 {
    animation-delay: 0s;
}

.heart-2 {
    animation-delay: 0.3s;
    transform: scale(1.1);
}

.heart-3 {
    animation-delay: 0.6s;
}

.union-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4B0C0C, transparent);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.union-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #4B0C0C;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(75, 12, 12, 0.6);
}

.union-text {
    text-align: center;
}

.union-text span {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: #4B0C0C;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(75, 12, 12, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(75, 12, 12, 0.6);
    }
}

/* Final Message Section */
.final-message {
    background: linear-gradient(135deg, #4B0C0C 0%, #5A1A1A 50%, #4B0C0C 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.final-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.final-heart {
    width: 80px;
    height: 80px;
    background: #E1A94D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(225, 169, 77, 0.5);
    animation: finalHeartPulse 3s ease-in-out infinite;
}

.final-heart i {
    color: var(--color-blanco);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.final-bride,
.final-groom {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #E1A94D;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.final-ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #E1A94D;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.final-date {
    background: rgba(225, 169, 77, 0.1);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(225, 169, 77, 0.3);
    backdrop-filter: blur(10px);
}

.final-date span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-blanco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

@keyframes finalHeartPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(225, 169, 77, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(225, 169, 77, 0.7);
    }
}

/* Ceremony Card - Nueva opción de diseño */
.ceremony-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid rgba(225, 169, 77, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.ceremony-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #E1A94D, #F4B976, #E1A94D);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.ceremony-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(225, 169, 77, 0.3);
}

.ceremony-date {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-number {
    font-size: 4rem;
    font-weight: 700;
    color: #E1A94D;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.date-month, .date-year {
    font-size: 1.2rem;
    color: var(--color-blanco);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.date-month {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.ceremony-time {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(225, 169, 77, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(225, 169, 77, 0.4);
}

.ceremony-time i {
    color: #E1A94D;
    font-size: 1.3rem;
}

.ceremony-time span {
    color: var(--color-blanco);
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ceremony-location {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.location-icon {
    background: #E1A94D;
    color: var(--color-blanco);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(225, 169, 77, 0.4);
    flex-shrink: 0;
}

.location-info h4 {
    color: #E1A94D;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location-info p {
    color: var(--color-texto);
    margin: 0.5rem 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E1A94D;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(225, 169, 77, 0.1);
    border: 1px solid rgba(225, 169, 77, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.location-link:hover {
    background: rgba(225, 169, 77, 0.2);
    border-color: #E1A94D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 169, 77, 0.3);
}

.location-link i {
    font-size: 0.9rem;
}

/* Info Section */
.info-section {
    background: #4B0C0C;
}

.info-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.info-icon {
    background: linear-gradient(135deg, #d4af37 0%, #b8935f 100%);
    color: #f5e6d3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, #f5e6d3 0%, #d4af37 100%);
    color: #4B0C0C;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f5e6d3;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-card:hover h4 {
    color: #d4af37;
    transform: translateY(-2px);
}

.info-card p {
    color: rgba(245, 230, 211, 0.9);
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.info-card:hover p {
    color: #f5e6d3;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    background: #4B0C0C;
}

.gallery-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(93, 78, 55, 0.9));
    color: var(--color-blanco);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
}

/* Love Story Text */
.love-story-text {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-align: center;
}

.story-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #F4F4F4;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #E1A94D;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Gifts Section */
.gifts-section {
    background: #4B0C0C;
}

.gifts-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.gifts-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gifts-intro {
    font-size: 1.2rem;
    color: var(--color-texto-claro);
    margin-bottom: 3rem;
    font-style: italic;
}

.gift-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gift-option-card {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gift-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #b8935f 100%);
    color: #f5e6d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.gift-option-card:hover .gift-icon {
    transform: scale(1.1) rotate(-5deg);
}

.gift-option-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f5e6d3;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gift-option-card p {
    color: rgba(245, 230, 211, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gift-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8935f 100%);
    color: #4B0C0C;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gift-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Panel de transferencia */
.transfer-panel {
    margin-top: 2rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transfer-content {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.transfer-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-align: center;
}

.transfer-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.transfer-details p {
    color: #f5e6d3;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.transfer-details strong {
    color: #d4af37;
    margin-right: 0.5rem;
}

.close-panel-btn {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5535 100%);
    color: #f5e6d3;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.close-panel-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #6b5535 0%, #4b3520 100%);
}

.gift-link {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-secundario), var(--color-rosa-profundo));
    color: var(--color-blanco);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.gift-link:hover {
    transform: scale(1.05);
}

.gift-code {
    background: var(--color-acento);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: monospace;
    color: var(--color-secundario);
    font-weight: 600;
    margin-top: 1rem;
}

.honeymoon-fund {
    background: var(--color-acento);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.honeymoon-fund p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-texto);
}

/* Lista de regalos dentro del panel */
.gift-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gift-item {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gift-item:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.gift-item i {
    font-size: 1.5rem;
    color: #d4af37;
    min-width: 25px;
}

.gift-item span {
    color: #f5e6d3;
    font-size: 0.95rem;
    font-weight: 500;
}

/* RSVP Section */
.rsvp-section {
    background: #4B0C0C;
    color: var(--color-blanco);
}

.rsvp-section * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.rsvp-section .section-title {
    color: #E1A94D; /* Mismo color dorado que todos los títulos */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(244, 228, 193, 0.4);
    border-radius: 10px;
    background: rgba(244, 228, 193, 0.1);
    color: var(--color-blanco);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 228, 193, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-dorado);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.form-group select option {
    background: var(--color-texto);
    color: var(--color-blanco);
}

.rsvp-btn {
    background: linear-gradient(45deg, var(--color-dorado), var(--color-acento));
    color: var(--color-texto);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.rsvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

/* Music Control Button */
.music-control-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.toggle-music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E1A94D 0%, #F4B976 100%);
    border: 3px solid #4B0C0C;
    color: #4B0C0C;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(225, 169, 77, 0.4);
    transition: all 0.3s ease;
    animation: none !important;
}

.toggle-music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(225, 169, 77, 0.6);
    background: linear-gradient(135deg, #F4B976 0%, #E1A94D 100%);
}

.toggle-music-btn:active {
    transform: scale(0.95);
}

.toggle-music-btn i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #4B0C0C;
    color: var(--color-blanco);
    text-align: center;
    padding: 2rem 0;
}

.footer * {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.footer i {
    color: var(--color-secundario);
    margin: 0 0.5rem;
}

/* Animations eliminadas - todas las secciones siempre visibles */

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-15px) rotate(10deg) scale(1.05);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(20px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes float1 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-30px) translateX(20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-60px) translateX(-10px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-30px) translateX(30px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

/* Animación simple de prueba */
@keyframes heartMove {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-50px) translateX(20px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float2 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-40px) translateX(-15px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-80px) translateX(25px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-40px) translateX(-25px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float3 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-25px) translateX(15px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-50px) translateX(-20px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-25px) translateX(25px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float4 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-35px) translateX(-20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-70px) translateX(15px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-35px) translateX(-30px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float5 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-40px) translateX(-15px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-20px) translateX(20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float6 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-30px) translateX(20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-60px) translateX(-10px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-30px) translateX(30px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float7 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-25px) translateX(15px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-50px) translateX(-20px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-25px) translateX(25px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes float8 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-35px) translateX(-20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-70px) translateX(15px) rotate(10deg) scale(1.05); opacity: 1; }
    75% { transform: translateY(-35px) translateX(-30px) rotate(5deg) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-layout {
        height: auto;
    }
    
    .hero-left {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-right {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 2rem 1rem;
        clip-path: none;
    }
    
    .rings-image-container {
        clip-path: none;
    }
    
    .image-overlay {
        clip-path: none;
    }
    
    .roses-image-container {
        top: 6rem;
        right: 1rem;
        max-width: 280px;
        max-height: 280px;
        z-index: 5;
    }
    
    .date-box {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .date-text {
        font-size: 1.5rem;
    }
    
    .couple-names {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .bride-name, .groom-name {
        font-size: 2.5rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .welcome-text {
        font-size: 1.1rem;
    }
    
    .quote-left, .quote-right {
        font-size: 2rem;
    }
    
    .full-countdown-text {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
        border-radius: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-details {
        flex-direction: column;
        text-align: center;
    }
    
    .event-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .maps-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Decorative Union Responsive */
    .decorative-union-ceremony-info {
        padding: 3rem 0;
    }
    
    .union-hearts {
        gap: 1.5rem;
    }
    
    .heart {
        width: 50px;
        height: 50px;
    }
    
    .heart i {
        font-size: 1.2rem;
    }
    
    .union-line {
        width: 150px;
    }
    
    .union-text span {
        font-size: 1.7rem;
    }
    
    /* Final Message Responsive */
    .final-message {
        padding: 3rem 0;
    }
    
    .final-heart {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .final-heart i {
        font-size: 1.7rem;
    }
    
    .final-bride,
    .final-groom {
        font-size: 3rem;
    }
    
    .final-ampersand {
        font-size: 2rem;
    }
    
    .final-date {
        padding: 0.8rem 2rem;
    }
    
    .final-date span {
        font-size: 1.6rem;
    }
    
    /* Ceremony Card Responsive */
    .ceremony-card {
        padding: 2rem;
    }
    
    .ceremony-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .date-number {
        font-size: 3rem;
    }
    
    .ceremony-location {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Welcome Screen Tablet Styles */
    .welcome-content {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .couple-welcome {
        gap: 1rem;
    }
    
    .bride-welcome, .groom-welcome {
        font-size: 2.5rem;
    }
    
    .ampersand-welcome {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.2rem;
    }
    
    .audio-options {
        gap: 1.5rem;
    }
    
    .audio-btn {
        min-width: 180px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Welcome Hearts Tablet */
    .welcome-hearts i {
        font-size: 1.1rem !important;
    }
    
    .welcome-hearts i:nth-child(1) {
        font-size: 1.3rem !important;
    }
    
    .welcome-hearts i:nth-child(2) {
        font-size: 1.7rem !important;
    }
    
    .welcome-hearts i:nth-child(4) {
        font-size: 1.6rem !important;
    }
    
    .welcome-hearts i:nth-child(6) {
        font-size: 1.4rem !important;
    }
    
    /* Music Control Button Tablet */
    .music-control-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .toggle-music-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
}

/* ===== ESTILOS DEL FORMULARIO RSVP ===== */

.rsvp-section {
    background: #3d0a0a;
    padding: 4rem 0;
}

.rsvp-content {
    max-width: 800px;
    margin: 0 auto;
}

.rsvp-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #f5e6d3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #f5e6d3;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 230, 211, 0.5);
}

.form-group select {
    cursor: pointer;
}

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

.btn-submit {
    background: linear-gradient(135deg, #d4af37 0%, #aa8b2e 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .rsvp-form {
        padding: 1.5rem;
    }
}

/* ===== FIN ESTILOS DEL FORMULARIO RSVP ===== */

/* ===== ESTILOS DEL CONTADOR CIRCULAR ===== */

.countdown-section {
    background: #4B0C0C;
    padding: 0 0 4rem 0;
    position: relative;
    margin-top: 0;
}

.countdown-container {
    background: transparent;
    padding: 0 20px 40px 20px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Decoración de flores */
.flower-decoration {
    position: absolute;
    top: -60px;
    left: 100px;
    width: 200px;
    height: 200px;
    opacity: 0.9;
    z-index: 15;
}

.flower-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Círculo principal */
.circular-countdown {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 10px;
    z-index: 5;
}

.circle-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 50%;
    opacity: 0.6;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.countdown-content {
    position: absolute;
    top: 20%;
    left: 7%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 20;
}

.falta-text {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.time-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.time-unit {
    text-align: center;
    margin-right: 10px;
}

.time-number {
    color: #f5e6d3;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.time-label {
    color: #d4af37;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.heart-icon {
    color: #f5e6d3;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Ondas decorativas */
.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    opacity: 0.3;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
    border-radius: 50%;
}

.wave:nth-child(1) {
    bottom: 20px;
    animation: wave 4s ease-in-out infinite;
}

.wave:nth-child(2) {
    bottom: 40px;
    animation: wave 4s ease-in-out infinite 0.5s;
}

.wave:nth-child(3) {
    bottom: 60px;
    animation: wave 4s ease-in-out infinite 1s;
}

@keyframes wave {
    0%, 100% { transform: scaleX(0.8); opacity: 0.2; }
    50% { transform: scaleX(1); opacity: 0.4; }
}

/* Banner ceremonial */
.ceremony-banner {
    background: linear-gradient(135deg, #b8935f 0%, #d4af37 50%, #b8935f 100%);
    padding: 10px 20px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ceremony-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.ceremony-text {
    color: white;
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive para contador circular */
@media (max-width: 480px) {
    .circular-countdown {
        width: 240px;
        height: 240px;
        margin-top: 60px;
    }

    .circle-border {
        margin-top: 60px;
    }

    .countdown-content {
        margin-top: 40px;
    }

    .falta-text {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .time-number {
        font-size: 1.8rem;
    }

    .ceremony-text {
        font-size: 1.2rem;
    }
}

/* ===== FIN ESTILOS DEL CONTADOR CIRCULAR ===== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-left {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-right {
        padding: 1.5rem 0.5rem;
    }
    
    .roses-image-container {
        top: -3rem;
        right: 0.5rem;
        max-width: 200px;
        max-height: 200px;
        z-index: 5;
    }

    .flower-decoration {
        top: -75px;
    }

    .countdown-section {
        margin-top: 40px !important;
    }

    .date-box {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .date-text {
        font-size: 1.2rem;
    }
    
    .bride-name, .groom-name {
        font-size: 2rem;
    }
    
    .ampersand {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .quote-left, .quote-right {
        font-size: 1.5rem;
    }
    
    .full-countdown-text {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }
    
    /* Ceremony Card Mobile */
    .ceremony-card {
        padding: 1.5rem;
    }
    
    .date-number {
        font-size: 2.5rem;
    }
    
    .date-month {
        font-size: 1.2rem;
    }
    
    .date-year {
        font-size: 1rem;
    }
    
    .ceremony-time {
        padding: 0.8rem 1rem;
    }
    
    .ceremony-time span {
        font-size: 1.1rem;
    }
    
    .location-info h4 {
        font-size: 1.5rem;
    }
    
    .maps-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Decorative Union Mobile */
    .decorative-union-ceremony-info {
        padding: 2rem 0;
    }
    
    .union-hearts {
        gap: 1rem;
    }
    
    .heart {
        width: 40px;
        height: 40px;
    }
    
    .heart i {
        font-size: 1rem;
    }
    
    .union-line {
        width: 120px;
    }
    
    .union-text span {
        font-size: 1.4rem;
    }
    
    /* Final Message Mobile */
    .final-message {
        padding: 2rem 0;
    }
    
    .final-heart {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .final-heart i {
        font-size: 1.5rem;
    }
    
    .final-names {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .final-bride,
    .final-groom {
        font-size: 2.5rem;
    }
    
    .final-ampersand {
        font-size: 1.8rem;
    }
    
    .final-date {
        padding: 0.6rem 1.5rem;
    }
    
    .final-date span {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Decorative Overlay Tablet */
    .hero-decorative-overlay {
        bottom: -8%;
    }
    
    .hero-union-image {
        width: 100vw;
        max-width: none;
    }
    
    /* Decorative Line Mobile */
    .decorative-line {
        padding: 2rem 0;
    }
    
    .line-content {
        padding: 0 1rem;
    }
    
    .line-center {
        width: 50px;
        height: 50px;
        margin: 0 1.5rem;
    }
    
    .line-center i {
        font-size: 1.2rem;
    }
    
    /* Hero Decorative Overlay Mobile */
    .hero-decorative-overlay {
        bottom: -5%;
    }
    
    .hero-union-image {
        width: 100vw;
        max-width: none;
    }
    
    /* Decorative Line Blanca Mobile */
    .decorative-line-blanca {
        padding: 2rem 0;
    }
    
    .line-content-blanca {
        padding: 0 1rem;
    }
    
    .line-center-blanca {
        width: 50px;
        height: 50px;
        margin: 0 1.5rem;
    }
    
    .line-center-blanca i {
        font-size: 1.2rem;
    }
    
    /* Welcome Screen Mobile Styles */
    .welcome-content {
        padding: 1rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    /* Welcome Hearts Responsive */
    .welcome-hearts i {
        font-size: 1rem !important;
    }
    
    .welcome-hearts i:nth-child(1) {
        font-size: 1.2rem !important;
    }
    
    .welcome-hearts i:nth-child(2) {
        font-size: 1.5rem !important;
    }
    
    .welcome-hearts i:nth-child(4) {
        font-size: 1.4rem !important;
    }
    
    .welcome-hearts i:nth-child(6) {
        font-size: 1.3rem !important;
    }
    
    .couple-welcome {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bride-welcome, .groom-welcome {
        font-size: 2rem;
    }
    
    .audio-options {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .audio-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .audio-selection h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    /* Music Control Button Mobile */
    .music-control-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    .toggle-music-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

