
        :root {
            --gris-claro: #d9d9d9;
            --naranja-dorado: #b88917;
            --rojo-rosa: #e8c3bd;
            --rojo-apagado: #b76e79;
            --blanco: #ffffff;
            --font-script: 'Great Vibes', cursive;
            --carmesi-claro:#fffcfd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--negro);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--carmesi-claro);
        }
        
        h1, h2, h3 {
            font-family: 'Parisienne', cursive;
            font-weight: 400;
        }
        
        /* Loading Screen - Modificado */
        .loading-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, var(--blanco) 0%, var(--gris-claro) 100%);*/
            /*background: linear-gradient(#e6e0d74d, #cfbeaf49), ;*/
            background: linear-gradient(#e6e0d74d, #cfbeaf49), url('../media/sobre.webp') no-repeat center center;
            background-size: contain;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1.5s ease-out, transform 1.5s ease-out;
        }
       
        .loading-logo {
            width: 170px;
            height: 170px;
            border-radius: 50%;
            margin-top: 150px;
            margin-right: 100px;
            /*background: linear-gradient(135deg, var(--naranja-dorado), var(--rojo-apagado));*/
            background-image: url("../media/Logo N&F_nbg.png");
            background-size: cover;        /* Ajusta la imagen para cubrir el contenedor */
            background-position: center;   /* Centra la imagen */
            background-repeat: no-repeat;  /* Evita que se repita */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
            animation: pulse 2.5s infinite;
            box-shadow: 0 15px 40px rgba(184, 137, 23, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .loading-logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }
        
        .loading-logo:hover {
            transform: scale(1.08);
            box-shadow: 0 20px 50px rgba(184, 137, 23, 0.5);
        }
        
        .loading-logo:hover::before {
            animation: shine 0.6s ease-in-out;
        }
        
        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
                opacity: 0;
            }
        }
        
        .loading-logo i {
            font-size: 70px;
            color: var(--blanco);
            transition: all 0.3s ease;
        }
        
        .loading-logo:hover i {
            transform: scale(1.1);
        }
        
        .loading-text {
            font-family: 'Parisienne', cursive;
            font-size: 42px;
            color: var(--naranja-dorado);
            letter-spacing: 2px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .loading-subtext {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            color: var(--rojo-apagado);
            letter-spacing: 1px;
            text-align: center;
            animation: fadeInOut 2s infinite;
            margin-top: 10px;
        }
        
        .loading-hint {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: bounce 2s infinite;
        }
        
        .loading-hint i {
            font-size: 24px;
            color: var(--naranja-dorado);
            margin-bottom: 10px;
        }
        
        .loading-hint p {
            font-size: 14px;
            color: var(--rojo-apagado);
            font-weight: 500;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 15px 40px rgba(184, 137, 23, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(184, 137, 23, 0.5); }
            100% { transform: scale(1); box-shadow: 0 15px 40px rgba(184, 137, 23, 0.4); }
        }
        
        @keyframes fadeInOut {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        .loading-screen.hide {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }
        
        /* Audio Toggle */
        .audio-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--naranja-dorado), var(--rojo-apagado));
            color: var(--blanco);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
        }
        
        .audio-toggle.show {
            opacity: 1;
            transform: scale(1);
        }
        
        .audio-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .audio-toggle i {
            font-size: 24px;
        }
        
        /* Header */
        .header {
            position: relative;
            height: 100vh;          
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../media/main.jpg') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--blanco);
            opacity: 0;
            transform: translateY(20px);
            /*transition: all 1s ease;*/
        }
        
        .header.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .header-content {
            background-color: #e8c3bd66;
            margin-top: -25%;
            padding: 50px;
            border-radius: 15px;
            max-width: 80%;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(194, 180, 178, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header h1 {
            font-size: 6rem;
            margin-bottom: 20px;
            color: var(--blanco);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            line-height: 1.2;
        }
        
        .header h2 {
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--gris-claro);
            letter-spacing: 1px;
            line-height: 1.3;
        }
        
        .header-divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--naranja-dorado), var(--rojo-apagado));
            margin: 25px auto;
            border-radius: 2px;
        }
        
        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .section.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section:nth-child(even) {
            /*background-color: var(--gris-claro);*/
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 4rem;
            margin-bottom: 60px;
            color: var(--naranja-dorado);
            position: relative;
            display: inline-block;
            width: 100%;
            font-weight: 400;
            line-height: 1.2;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--naranja-dorado), var(--rojo-apagado));
            border-radius: 2px;
        }
        
        /* Frase para Invitados */
        .frase-section {
            background-color: #fffcfd;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .frase-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("../media/Fondo frase inicio.webp") no-repeat center center/cover;
            opacity: 0.6;
            z-index: 01;
        }
        
        .frase-text {
            font-family: 'Parisienne', cursive;
            font-size: 3rem;
            font-style: italic, bold;
            max-width: 800px;
            margin: 0 auto;
            color: #666;
            position: relative;
            z-index: 1;
            line-height: 1.4;
            font-weight: 400;
        }
        
        .frase-author {
            margin-top: 20px;
            font-size: 1.4rem;
            color: var(--naranja-dorado);
            position: relative;
            z-index: 1;
            font-family: 'Parisienne', cursive;
        }
        
        .contador-section {
            position: relative;
            background: var(--carmesi-claro);
            /*background-image: url("./media/Fondo contador.webp"); */
            /*background-size: cover; */          /* Cubre todo el contenedor */
            /*background-position: center; */     /* Centra la imagen */
            /*background-repeat: no-repeat; */    /* Evita repetición */
            text-align: center;
            z-index: 1;
        }

        .contador-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url("../media/Fondo contador.webp") no-repeat center center/cover;
            opacity: 0.8; /* Ajusta la transparencia si lo deseas */
            z-index: -1;
        }
        
        .contador-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .contador-item {
            background: linear-gradient(135deg, var(--rojo-rosa), var(--rojo-apagado));
            color: var(--blanco);
            padding: 30px 25px;
            border-radius: 15px;
            min-width: 140px;
            box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
            transition: all 0.3s ease;
        }
        
        .contador-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(183, 110, 121, 0.4);
        }
        
        .contador-number {
            font-size: 3.5rem;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .contador-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Dedicatoria a Padres - Corregido */
        .padres-section {
            background: var(--carmesi-claro);
            /*background-image: url("./media/Fondo menciones.webp");
            /*background-size: cover;*/           /* Cubre todo el contenedor */
            /*background-position: center;*/      /* Centra la imagen */
            /*background-repeat: no-repeat;*/     /* Evita repetición */
            /*text-align: center;*/
        }

        .padres-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .padre-item {
            text-align: center;
            padding: 30px;
            background-color: var(--blanco);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            max-width: calc(50% - 20px);
        }
        
        .padre-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .padre-item h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .padre-item p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .padre-item .icon {
            font-size: 2.5rem;
            color: var(--rojo-apagado);
            margin-bottom: 20px;
        }
        
        .padres-container img {
            width: 150px;
            height: auto;
            text-align: center;
        }


        /* Ubicación */
        .ubicacion-section {
            /*background-color: #fffbfc;
            text-align: center;*/
            max-width: 800px;
            margin: 0 auto;
            background-color: #fdf1f3;
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .ubicacion-image {
            max-width: 250px;
            height: auto;
            margin-top: -50px;
            margin-left: -6%;
            margin-bottom: 0px;
            border-radius: 5px;
        }

        .ubicacion-container {
            
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ubicacion-info {
            margin-bottom: 40px;
            
        }
        
        .ubicacion-info h3 {
            font-size: 2.8rem;
            margin-bottom: 0px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .ubicacion-info p {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: 'mobile 'Montserrat', sans-serif;
        }

        .mensaje-bienvenida {
            text-align: center;
            
            color: var(--rojo-apagado);
            font-family: bold;
            font-size: 1.2rem;
        }

        .map-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--naranja-dorado), var(--rojo-apagado));
            color: var(--blanco);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 8px 25px rgba(184, 137, 23, 0.3);
            font-family: 'Montserrat', sans-serif;
        }
        
        .map-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(184, 137, 23, 0.4);
        }
        
        .map-button i {
            margin-right: 10px;
        }
        
        /* Hospedaje */
        .hospedaje-section {
            /*background-color: var(--gris-claro);*/
        }
        
        .hospedaje-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .hospedaje-item {
            background-color: var(--blanco);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .hospedaje-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .hospedaje-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hospedaje-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }
        
        .hospedaje-content {
            padding: 30px;
        }
        
        .hospedaje-content h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .hospedaje-content p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hospedaje-content .code {
            font-weight: bold;
            color: var(--rojo-apagado);
            background-color: var(--gris-claro);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hospedaje-map {
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            color: var(--naranja-dorado);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hospedaje-map:hover {
            color: var(--rojo-apagado);
            transform: translateX(5px);
        }
        
        .hospedaje-map i {
            margin-right: 8px;
        }
        
        /* Código de Vestimenta */
        .vestimenta-section {
            /*background-color: var(--blanco);*/
            text-align: center;
        }
        
        .vestimenta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .vestimenta-info {
            margin-bottom: 40px;
        }
        
        .vestimenta-image {
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
            border-radius: 5px;
        }

        .vestimenta-info h3 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .vestimenta-info p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.8;
            font-family: 'Montserrat', sans-serif;
        }
        
        .color-prohibido {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            padding: 20px 30px;
            background-color: #f5e8e6;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .color-circle {
            width: 60px;
            height: 60px;
            /*background-color: #2e2e2e;*/
            border-radius: 50%;
            position: relative;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .color-circle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--rojo-apagado);
            transform: rotate(-45deg);
            box-shadow: 0 2px 5px rgba(183, 110, 121, 0.5);
        }
        
        .color-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--rojo-apagado);
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Invitados - Corregido */
        .invitados-section {
            /*background-color: var(--gris-claro);*/
            text-align: center;
        }
        
        .invitados-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--blanco);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .invitados-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--rojo-rosa);
        }
        
        .invitados-header h3 {
            font-size: 1.4rem;
            color: var(--rojo-apagado);
            margin-bottom: 10px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .invitados-header h2 {
            font-size: 3rem;
            color: var(--naranja-dorado);
            font-weight: 400;
            margin: 0;
            line-height: 1.2;
        }
        
        .invitados-details {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background-color: var(--gris-claro);
            border-radius: 15px;
            border-left: 4px solid var(--naranja-dorado);
        }
        
        .invitados-details p {
            font-size: 1.8rem;
            color: var(--naranja-dorado);
            margin: 0;
            font-weight: 500;
            font-family: 'Parisienne', cursive;
            line-height: 1.4;
        }
        
        .qr-section {
            margin-top: 40px;
            text-align: center;
        }
        
        .qr-section h4 {
            font-size: 1.6rem;
            color: var(--rojo-apagado);
            margin-bottom: 20px;
            font-weight: 400;
            font-family: 'Parisienne', cursive;
        }
        
        .qr-container {
            display: inline-block;
            position: relative;
            background-color: var(--blanco);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gris-claro);
        }
        
        #qrcode {
            display: block;
        }
        
        .qr-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: var(--blanco);
            border-radius: 50%;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .qr-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .qr-instructions {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Itinerario - Corregido y Simplificado */
        .itinerario-section {
            /*background-color: var(--blanco);*/
            padding: 100px 0;
        }
        
        .itinerario-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            background-image: url('../media/Fondo itinerario2.webp'); /* Reemplaza con la ruta real */
            background-size: cover;       /* Ajusta la imagen para cubrir toda la sección */
            background-position: center;  /* Centra la imagen */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
            padding: 50px;                /* Espaciado interno opcional */
            color: white;  
            border-radius: 5px;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            
        }
        
        .itinerario-timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .itinerario-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--naranja-dorado), var(--rojo-apagado));
            border-radius: 2px;
        }
        
        .itinerario-item {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .itinerario-item:nth-child(odd) {
            justify-content: flex-end;
        }
        
        .itinerario-item:nth-child(even) {
            justify-content: flex-start;
        }
        
        .itinerario-content {
            width: 45%;
            padding: 30px;
            background-color: var(--blanco);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(184, 137, 23, 0.1);
        }
        
        .itinerario-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(184, 137, 23, 0.3);
        }
        
        .itinerario-content h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--naranja-dorado);
            font-weight: 400;
            line-height: 1.2;
            text-align: center;
        }
        
        .itinerario-content p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .itinerario-time {
            font-size: 1rem;
            color: var(--rojo-apagado);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            justify-content: center;
        }
        
        .itinerario-time i {
            font-size: 0.9rem;
        }
        
        .itinerario-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--blanco);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(177, 177, 177, 0.4);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .itinerario-icon:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(177, 177, 177, 0.5);
        }
        
        .itinerario-icon img {
            width: 80%;
            height: 80%;
            object-fit: cover;
        }
        
        .itinerario-icon i {
            font-size: 24px;
            color: var(--blanco);
        }
        
        /* Mesa de Regalos */
        .regalos-section {
            /*background-color: var(--gris-claro);*/
            text-align: center;
        }
        
        .regalos-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .regalos-message {
            font-family: 'Parisienne', cursive;
            font-size: 2rem;
            margin-bottom: 40px;
            font-style: italic;
            line-height: 1.4;
            color: var(--rojo-apagado);
            font-weight: 400;
        }
        
        .regalos-options {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .regalo-option {
            background-color: var(--blanco);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            min-width: 250px;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 350px;
        }
        
        .regalo-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .regalo-option h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .regalo-option p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .regalo-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--naranja-dorado), var(--rojo-apagado));
            color: var(--blanco);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(184, 137, 23, 0.3);
            font-family: 'Montserrat', sans-serif;
        }
        
        .regalo-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(184, 137, 23, 0.4);
        }
        
        .bank-info {
            margin-top: 50px;
            background-color: var(--blanco);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .bank-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--naranja-dorado);
            line-height: 1.2;
        }
        
        .bank-info p {
            margin-bottom: 12px;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .bank-info .bank-details {
            background-color: var(--gris-claro);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: left;
        }
        
        .bank-info .bank-details p {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            font-family: 'Montserrat', sans-serif;
        }
        
        .bank-info .bank-details span {
            font-weight: bold;
            color: var(--rojo-apagado);
        }
        
        /* Confirmación - Corregido */
        .confirmacion-section {
            /*background-color: var(--blanco);*/
            background-image: url('../media/Fondo asistencia.webp'); /* Reemplaza con la ruta real */
            background-size: cover;       /* Ajusta la imagen para cubrir toda la sección */
            background-position:  bottom center;  /* Centra la imagen */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
            text-align: center;
        }
        
        .confirmacion-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .confirmacion-form {
            background: linear-gradient(135deg, #fdf1f3 0%, #fdf1f31c 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 30px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--rojo-apagado);
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .form-group select,
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: var(--blanco);
        }
        
        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: var(--naranja-dorado);
            box-shadow: 0 0 0 0 3px rgba(184, 137, 23, 0.1);
        }
        
        .form-group input:disabled {
            background-color: #f5f5f5;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .form-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .form-button {
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            font-family: 'Montserrat', sans-serif;
        }
        
        .confirm-button-groom {
            background: linear-gradient(135deg, var(--naranja-dorado), var(--rojo-apagado));
            color: var(--blanco);
        }
        
        .confirm-button-groom:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(184, 137, 23, 0.4);
        }
        
        .confirm-button-bride {
            background: linear-gradient(135deg, var(--rojo-rosa), var(--rojo-apagado));
            color: var(--blanco);
        }
        
        .confirm-button-bride:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(183, 110, 121, 0.4);
        }
        
        .form-button i {
            margin-right: 10px;
        }
        
        /* --- Footer --- */
        footer {
            text-align: center;
            /*padding: 10px 0;*/
            /*background-color: var(--red-darker);*/
            color: var(--cream);
            background: radial-gradient(circle at center bottom , #dabdc2, #a3834d);
            
        }

        footer p {
            font-family: var(--font-script);
            color: #e2e2e2;
            font-size: 1rem;
        }

        .footer-logo {
            display: inline-block;
            margin-top: 20px;
            max-height: 40px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .footer-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .loading-logo {
                width: 140px;
                height: 140px;
                margin-top: 135px;
                margin-left: 22px;
            }

            .header-content {
                margin-top: -65%;
            }
            
            .header h1 {
                font-size: 4.5rem;
            }
            
            .header h2 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 3.5rem;
            }
            
            .itinerario-item{
                margin-bottom: 30px;
            }

            .ubicacion-section {
                max-width: 80%;
                margin: 0 auto;
            }

            .itinerario-item:nth-child(odd),
            .itinerario-item:nth-child(even) {
                justify-content: center;
            }
            
            .itinerario-content {
                width: 80%;
                margin: 20px 0;
                margin-left: 20%;
            }
            
            .itinerario-timeline::before {
                left: 30px;
            }
            
            .itinerario-icon {
                position: absolute;
                transform: none;
                left: auto;
                top: auto;
                margin-right: 85%;
            }
            
            .padres-container {
                max-width: 600px;
            }

            .padre-item {
                max-width: 100%;
            }
        }
        
        @media (max-width:: 768px) {
            .header-content {
                margin-top: -65%;
            }

            .header h1 {
                font-size: 3.5rem;
            }
            
            .header h2 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .contador-container {
                gap: 15px;
            }
            
            .contador-item {
                min-width: 120px;
                padding: 20px 15px;
            }
            
            .contador-number {
                font-size: 2.5rem;
            }
            
            .padre-item {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .ubicacion-section {
                max-width: 80%;
                margin: 0 auto;
            }


            .hospedaje-container {
                grid-template-columns: 1fr;
            }
            
            .regalos-options {
                flex-direction: column;
                align-items: center;
            }
            
            .regalo-option {
                max-width: 100%;
            }
            
            .form-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .form-button {
                width: 100%;
                max-width: 300px;
            }
            
            .itinerario-content {
                width: 90%;
                padding: 10px 10px;
                margin-left: 20%;
            }
            
            .loading-logo {
                width: 140px;
                height: 140px;
                margin-top: 135px;
                margin-left: 22px;
            }

            .invitados-container {
                padding: 30px 20px;
            }
            
            .invitados-header h2 {
                font-size: 2.5rem;
            }
            
            .frase-text {
                font-size: 2rem;
            }
            
            .loading-text {
                font-size: 36px;
            }
            
            .invitados-details p {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .header-content {
                margin-top: -65%;
            }

            .header-content {
                padding: 30px 20px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2.6rem;
            }
            
            .frase-text {
                font-size: 1.6rem;
            }
            
            .contador-item {
                min-width: 100px;
                padding: 15px 10px;
            }
            
            .contador-number {
                font-size: 2rem;
            }
            
            .ubicacion-section {
                max-width: 80%;
                margin: 0 auto;
            }


            .itinerario-timeline::before {
                left: 20px;
            }
            
            .loading-logo {
                width: 140px;
                height: 140px;
                margin-top: 135px;
                margin-left: 22px;
            }
            
            .loading-logo i {
                font-size: 60px;
            }
            
            .loading-text {
                font-size: 32px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .header h2 {
                font-size: 1.6rem;
            }
            
            .invitados-details p {
                font-size: 1.3rem;
            }
            
            /* Mobile Itinerario Fix */
            .itinerario-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .itinerario-content {
                width: 85%;
                max-width: 320px;
                padding: 10px 10px;
                order: 2;
                margin-left: 20%;
            }
            
            .itinerario-icon {
                position: absolute;
                transform: none;
                left: auto;
                top: auto;
                order: 1;
                margin-right: 85%;
                width: 70px;
                height: 70px;
            }
            
            .itinerario-timeline::before {
                left: 35px;
            }
            
            .itinerario-item:not(:last-child)::after {
                content: '';
                position: absolute;
                top: 100px;
                left: 35px;
                width: 2px;
                height: 40px;
                background: linear-gradient(to bottom, var(--naranja-dorado), var(--rojo-apagado));
            }
            
            .itinerario-content h3 {
                font-size: 2rem;
            }
            
            .itinerario-content p {
                font-size: 1rem;
            }
            
            .itinerario-time {
                font-size: 0.9rem;
            }

            .padre-item {
                max-width: 100%;
            }

        }