@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cinzel+Decorative:wght@400;700;900&family=Cookie&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Great+Vibes&family=Monsieur+La+Doulaise&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rouge+Script&family=Special+Gothic+Expanded+One&family=Tangerine:wght@400;700&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {

    font-family: Arial, sans-serif;
    color: #AA934D;
    /*background-color: #d97430;*/
    background-color: #fff;

}
/*Estilos para el sobre de invitación*/
.envelope-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            cursor: pointer;
            transition: opacity 0.5s ease;
        }
        
        .envelope-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 100vw;
            max-height: 100vh;
        }
        
        .envelope-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .envelope-image:hover {
            transform: translate(-50%, -50%) scale(1.02);
        }

        .invitation-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .invitation-content.visible {
            opacity: 1;
        }


/* Fondo blanco transparente para el contador */
        .countdown-container {
            background-color: rgba(185, 172, 125, 0.2);
            border-radius: 15px;
            /*padding: 15px;*/
           /* margin-top: 20px;*/
            display: inline-block;
        }
        
        /* Estilos para la sección de fecha del evento */
        .event-date-container {
            text-align: center;
            margin-bottom: 5px;
        }
        
        .event-date-icon {
            width: 120px;
            margin: 0 auto 15px;
        }
        
        .event-date-text {
            font-family: "EB Garamond", serif;
            color: ##B9AC7D;
            font-size: 22px;
            
        }
        
        .event-date {
            font-family: "EB Garamond", serif;
            color: #B9AC7D;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .event-limit-date-text{
            font-family: "EB Garamond", serif;
            color: #000;
            font-size: 22px;
            
        }
        
        /* Media queries para la fecha del evento */
        @media only screen and (max-width: 600px) {
            .event-date-icon {
                width: 80px;
            }
            
            .event-date-text,.event-limit-date-text {
                font-size: 18px;
            }
            
            .event-date {
                font-size: 24px;
            }
        }



/* Orientación horizontal para PC, laptop y tablet */
        @media (min-width: 768px) {
            .envelope-image-desktop {
                display: block;
                width: auto;
                height: auto;
                max-height: 80vh;
                max-width: 90vw;
            }
        }
        
        /* Orientación vertical para móviles */
        @media (max-width: 767px) {
            .envelope-image-mobile {
                display: block;
                width: auto;
                height: auto;
                max-width: 90vw;
                max-height: 90vh;
            }
        }
        
        .hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 1s ease;
        }



/*Portada*/
.invitation-cover {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background-image: url('imgxv_lc/img_portadal.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .overlay-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .content-cover {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 600px;
        }
        
        .title-section {
            /*margin-bottom: 2rem;*/
        }
        
        .title-mis {
            font-family: 'Playfair Display';
            font-size: 5rem;
            color: #c5be89;

            font-weight: 300;
            line-height: 1;
            /*margin-bottom: 0.5rem;*/
        }
        
        .title-xv {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .xv-image {
            max-width: 70%; /* Ajusta este valor según el tamaño deseado */
            height: auto;
            display: block;
        }
        
        .title-name {
            margin-top: 1rem;
        }

        .fecha-xv{
            font-size: clamp(22px, 4vw, 32px);
            text-align: center;
        }
        
        .name-lau {
            
            font-family: "Great Vibes", cursive;
            font-size: 4rem;
            color: #000;
            font-weight: 300;
            margin-bottom: -0.5rem;
        }
        
        .name-cami {
            font-family: "Special Gothic Expanded One", sans-serif;
            font-size: 3.5rem;
            color: #B9AC7D;
            font-weight: 400;
            letter-spacing: 0.1em;
        }

        .ftext{
            font-family: "Great Vibes", cursive;
            font-size: 1.2rem;
            margin: 0 80px 0 80px;
            color: #000;
            font-weight: 400;
            letter-spacing: 0.1em;

        }
        
        .countdown {

            /*margin-top: 3rem;*/
            display: flex;
            justify-content: center;
            color:#000;
        }
        
        .countdown-item {
            /*margin: 0 1rem;*/
            text-align: center;
        }
        
        .countdown-number {
            font-family: 'Roboto';
            font-size: 2.5rem;
            font-weight: 400;
        }
        
        .countdown-label {
            font-family: 'Roboto';
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .countdown-separator {
            font-size: 2.5rem;
            margin: 0 0.5rem;
            font-weight: 300;
            opacity: 0.7;
        }
        

/* Media queries para diferentes tamaños de pantalla */

/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .invitation-cover {
        min-height: 100vh;
        background-image: url('imgxv_lc/img_portadac.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 1rem 0.5rem; /* Reduce el padding */
    }
    .invitation-cover {
                padding: 1rem;
            }
            
            .title-mis {
                font-size: 3.5rem;
            }
            
            .title-xv {
                font-size: 5rem;
            }
            
            .name-lau {
                font-size: 3.7rem;
            }
            
            .name-cami {
                font-size: 2.5rem;
            }

            .ftext{
            font-size: 1.2rem;
             margin: 0 8px 0 8px;
            }
            
            .countdown {
                /*margin-top: 2rem;*/
            }
            
            .countdown-item {
                margin: 0 0.5rem;
            }
            
            .countdown-number {
                font-size: 1.5rem;
            }
            
            .countdown-separator {
                font-size: 1.5rem;
                margin: 0 0.2rem;
            }
            
            .countdown-label {
                font-size: 0.7rem;
            }
            .xv-image {
                max-width: 90%; /* Tamaño para móviles */
            }
    
  
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .invitation-cover {
       /* min-height: 90vh;*/
        background-image: url('imgxv_lc/img_portadat.png'); /* Versión optimizada para tablet */
    }
            .title-mis {
                font-size: 2rem;
            }
            
            .title-xv {
                font-size: 5rem;
            }
            
            .name-lau {
                font-size: 5.5rem;
            }
            
            .name-cami {
                font-size: 2.5rem;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .countdown-separator {
                font-size: 2rem;
            }
            .xv-image {
                max-width: 90%; /* Tamaño para tablets */
            }
}

/*separador
.espaciado{
    background-color: #000;
    padding: 2px;

}*/

/* Estilos para la sección frase */
.frase {
    background-image: url('imgxv_lc/frase_fondol.png');
    background-size: cover;
    background-position: center;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

.frase div {
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.frase p {
    font-family: "Great Vibes", cursive;
    font-size: clamp(26px, 6vw, 40px);
    line-height: 1.7;
    color: #000;
    margin: 0;
}

/* Media queries para diferentes tamaños de pantalla */
/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .frase {
        background-image: url('imgxv_lc/frase_fondoc.png'); /* Versión optimizada para móvil */
        min-height: 30vh;
        padding: 20px 10px;
    }
    
    .frase div {
        padding: 20px 15px;
    }
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .frase {
        background-image: url('imgxv_lc/frase_fondot.png'); /* Versión optimizada para tablet */
        min-height: 65vh;
    }
}




/*Padres*/

       .main-papas {
            background-image: url('imgxv_lc/fondo2l.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px;
        }
        
        .overlay-papas {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background-color: rgba(255, 255, 255, 0.6);*/
        }
        
        .content-papas {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 600px;
            text-align: center;
            padding: 20px 0;
        }
        
        .golden-frame-papas {
            /*border: 2px solid #d4b04c;*/
            padding: 30px 20px;
            margin: 10px 0;
            /*background-color: rgba(234, 244, 236, 0.7);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
        }
        
        .section-title {
            font-family: 'Bodoni Moda';
            margin-top: 5px;
            /*font-size: clamp(45px, 7.5vw, 75px);*/
            font-size: 3rem;
            color: #B9AC7D;

            margin-bottom: 10px;
            font-weight: bolds;
            font-style: italic;
        }
        
        .name {
            font-family: "Tangerine";
            font-size: clamp(45px, 6vw, 55px);
            color: #B9AC7D;
            font-weight: 700;
            font-style: normal;
            /*text-transform: uppercase;*/
            letter-spacing: 2px;
        }

        .txtinvita {
            font-family: "Tangerine";
            font-size: clamp(35px, 5vw, 40px);
            color: #000;
            /*margin-bottom: 6px;*/
            margin: 5px 80px 10px 80px;
            font-weight: 700;
            font-style: normal;
            /*text-transform: uppercase;*/
            letter-spacing: 2px;
        }


        
        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 25px 0;
        }
        
        .divider-line {
            height: 1px;
            background-color: #d4b04c;
            flex-grow: 1;
            max-width: 80px;
        }
        
        .divider-flower {
            width: 40px;
            height: 20px;
            background-color: transparent;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .divider-flower::before {
            content: "❀";
            color: #d4b04c;
            font-size: 16px;
        }
        
        /* Media queries para diferentes tamaños de pantalla */
/*Papás*/
/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .main-papas {
        min-height: 100vh;
        background-image: url('imgxv_lc/fondo2c.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 10px 5px;
    
    }

    .txtinvita {
           
           
            margin: 5px 10px 10px 10px;
            line-height: 1;
        }

        .section-title {
            font-family: 'Bodoni Moda';
            margin-top: 5px;
            /*font-size: clamp(45px, 7.5vw, 75px);*/
            font-size: 3rem;
            color: #B9AC7D;

            margin-bottom: 10px;
            font-weight: bolds;
            font-style: italic;
        }

    .golden-frame-papas {
                padding: 15px 10px;
            }
            
            .divider {
                margin: 5px 0;
            }
            
            .divider-line {
                max-width: 40px;
            }
            
            .divider-flower {
                margin: 0 10px;
            }
            
  
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .main-papas {
        background-image: url('imgxv_lc/fondo2t.png'); /* Versión optimizada para tablet */
    }

    .golden-frame-papas {
                padding: 20px 15px;
            }
            
            .divider-line {
                max-width: 60px;
            }
            
}
        


/*boton música*/
.fixed-button {
    position: fixed;
    bottom: 150px; /* Espaciado desde la parte inferior */
    left: 10px; /* Espaciado desde la derecha */
    background-color: #fffff;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.2s, background-color 0.3s;
}

/* Efectos al pasar el ratón */
.fixed-button:hover {
    background-color: #000;
    color: white;
    transform: scale(1.1); /* Aumenta el tamaño ligeramente */
}

/* Adaptación responsiva */
@media (max-width: 768px) {
    .fixed-button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .fixed-button {
        font-size: 12px;
        padding: 6px 10px;
    }
}



/*Datos y contador*/
.contador {
    display: flex;
    align-items: center;
    font-size: 2vw; /* Ajuste adaptable según la pantalla */
    color: #AA934D;
    text-align: center;
    justify-content: center;
    /*position: absolute;*/
    bottom: 200px;
}

.cuadro{

    padding: 10px;
    margin-left: 450px;
    margin-right: 450px;
}

.segmento {
    font-family: Spectral;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.segmento div {
    font-size: 4rem; /* Ajuste adaptable según la pantalla */
  
}

/*Titulos y separadores*/
.separador{
    width: 30%;
}

/*ubicaciones*/


        .main-ubicacion {
            background-image: url('imgxv_lc/fondo4l.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px;
        }

        .overlay-ubicacion {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background-color: rgba(255, 255, 255, 0.6);*/
        }
        
        .content-ubicacion {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 600px;
            text-align: center;
            padding: 20px 0;
        }
        
        .title-ubi {
            font-family: 'Bodoni Moda';
            color: #B9AC7D;
            font-size: clamp(40px, 7.5vw, 75px);
            /*margin-top: 20px;*/
            margin-bottom: 5px;
            font-weight: bold;
            font-style: italic;
        }
        
        .locations {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }
        
        .location-card {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .location-img-container {
            width: 200px;
            height: 350px;
            overflow: hidden;
            
        }
        
        .location-img {
            height: 100%;
            object-fit: cover;
        }
        
        .location-title {
            font-family: 'Tangerine';
            color: #B9AC7D;
            font-size: 3.2rem;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .location-name {
            font-family:'Montserrat Alternates';

            margin-bottom: 5px;
            text-align: center;
            color: #000;
        }

         .location-name2 {
            font-family:'Montserrat Alternates';
            font-weight: 500;
            font-style: normal;
            margin-bottom: 5px;
            text-align: center;
            color: #000;
        }
        
        .location-address {
            font-family:'Montserrat Alternates';
            font-size: 0.9rem;
            margin-bottom: 5px;
            text-align: center;
            color: #000;

        }
        
        .gps-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border: 1px solid #B9AC7D;
            border-radius: 30px;
            color: #B9AC7D;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .gps-btn:hover {
            background-color: #B9AC7D;
            color: white;
        }
        
        .gps-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            fill: #B9AC7D;
        }
        
        .gps-btn:hover .gps-icon {
            fill: white;
        }
        
///////////////////////////////////////////////////////////////////////////////
/* Media queries para diferentes tamaños de pantalla */
/*Ubicaciones*/
/* Dispositivos extra pequeños (teléfonos, 600px y menos) */

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .main-ubicacion {
        background-image: url('imgxv_lc/fondo4t.png'); /* Versión optimizada para tablet */
    }
    .locations {
                flex-direction: column;
                align-items: center;
            }
            
            .location-card {
                width: 100%;
            }
            
            .location-img-container {
                width: 55%;
               
            }
            
}

@media only screen and (max-width: 600px) {
    .main-ubicacion {
         min-height: 100vh;
        background-image: url('imgxv_lc/fondo4c.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 10px 5px;

    }

    .location-title {
           
            margin-bottom: 5px;
    
        }

        .location-name {
       margin-bottom: 15px;
           
        }
        
        .location-address {

            margin-bottom: 15px;

        }
}


/*Regalos*/
.main-mesa {
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            background-image: url('imgxv_lc/fondo5l.png');
            background-size: cover;
            background-position: center;
            /*background-attachment: fixed;*/
        }
        
        .invitation-container {
            max-width: 800px;
            width: 100%;

            position: relative;

            padding: 40px;
            overflow: hidden;

        }
        
        .content-mesa {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }
        
        .title-mesa {
            font-family: 'Cookie';
            font-size: clamp(45px, 7.5vw, 75px);
            olor: #ab8929;
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .gift-table {
            margin-bottom: 30px;
        }
        
        .image-container {
            width: 100%;
            height: 100%;
            margin: 10px 0;
            overflow: hidden;
            position: relative;

        }
        
        .image-container img {
            width: 50%;
            height: 50%;
            object-fit: cover;
        }
        
        .divider-mesa {
            height: 2px;
            background: linear-gradient(to right, transparent, #c9a45c, transparent);
            margin: 10px auto;
            width: 60%;
        }
        
        .description {
            font-family:'Montserrat Alternates';
            font-size: 1.2rem;
            color: #555;
            margin-top: 10px;
            margin-bottom: 5px;
        }
        .link {
            font-family:'Montserrat Alternates';
            font-size: 1.2rem;
            color: #ab8929;
            margin-top: 10px;
            margin-bottom: 20px;
            text-decoration: none;

        }

/* Media queries para diferentes tamaños de pantalla */
/*Regalos*/
/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .main-mesa {
        min-height: 100vh;
        background-image: url('imgxv_lc/fondo5c.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 10px 5px;
    }
    .invitation-container {
                padding: 15px;
            }
            
            /*.title-mesa {
                font-size: 2rem;
                margin-bottom: 20px;
            }*/
            
            .image-container {
                height: 100%;
                /*border-radius: 50px;*/
            }
            
            .content-mesa {
                padding: 10px;
            }
    
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .main-mesa {
        background-image: url('imgxv_lc/fondo5t.png'); /* Versión optimizada para tablet */
    }
    .invitation-container {
                padding: 20px;
            }
            
            
            .image-container {
                height: 100%;
            }

    
            
}
       

/*Confirmar*/
        .main-confirmar {
            font-family: 'Cookie';
            background-color: #e8f0eb;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            background-image: url('imgxv_lc/fondo6l.png');
            background-size: cover;
            background-position: center;
            /*background-attachment: fixed;*/
        }
        
        .container-confirmar {
            max-width: 600px;
            width: 100%;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .content-confirmar {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 20px 0;
        }
        
        .title-confirmar {
            font-size: clamp(40px, 7.5vw, 55px);
           
            font-family: 'Bodoni Moda';
            color: #B9AC7D;
            font-weight: bold;
            font-style: italic;
        }
        
        .heart-decoration {
            color: #c5be89;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .contact-list {
            list-style-type: none;
            margin: 30px 0;
        }
        
        .contact-item {
            margin: 5px 0;
            position: relative;
        }
        
        .contact-name {
            font-family: 'Tangerine';
            color: #000;
            font-size: clamp(40px, 6vw, 45px);
            margin-top: 5px;
        }
        
        .whatsapp-icon {
            width: 60px;
            height: 60px;
            background-color: #B9AC7D;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 10px;
        }
        
        .whatsapp-icon i {
            color: white;
            font-size: 45px;
        }
        
        /* Media queries para diferentes tamaños de pantalla */
/*Asistencia*/
/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .main-confirmar {
        min-height: 100vh;
        background-image: url('imgxv_lc/fondo6c.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 10px 5px;

    }

    .confirmar-container {
                padding: 15px;
                margin: 10px;
            }

    
    
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .main-confirmar {
        background-image: url('imgxv_lc/fondo6t.png'); /* Versión optimizada para tablet */
    }
    .confirmar-container {
                padding: 20px;
            }
                      
            .whatsapp-icon {
                width: 100px;
                height: 100px;
            }
                 
}

/*footer*/
/* Estilos base para la sección de footer */
.main-footer {
    background-color: #e8f1ee;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: url('imgxv_lc/fondo7l.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*position: relative;*/
}

/* Overlay para mejorar la visibilidad del contenido sobre la imagen */
.overlay-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Ajusta la opacidad según necesites */
    z-index: 1;
}

/* Contenedor del footer */
.container-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contenido del footer */
.content-footer {
    text-align: center;
    position: relative;
            z-index: 1;
}

/* Estilos para el nombre */
.name-footer {  
    color: #333;
}

.name-first {
    font-family: "Great Vibes", cursive;
    font-size: clamp(80px, 7.5vw, 100px);
    font-weight: 300;
    margin-bottom: 5px;
}

.name-last {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: clamp(60px, 7.5vw, 100px);
   
    letter-spacing: 2px;
    color: #B9AC7D;
}

/* Estilos para la frase del final */
.frase_last {
    font-family: "Great Vibes", cursive;
    font-size: clamp(30px, 3.5vw, 30px);
    line-height: 1.7;
    color: #000;
    text-align: center;
    max-width: 600px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Media queries para diferentes tamaños de pantalla */

/* Dispositivos extra pequeños (teléfonos, 600px y menos) */
@media only screen and (max-width: 600px) {
    .main-footer {
        min-height: 100vh;
        background-image: url('imgxv_lc/fondo7c.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 10px 5px;
    }
    .container-footer {
                padding: 20px;
                margin: 0 10px;
            }
  
}

/* Dispositivos pequeños (tablets en portrait, 600px y más) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .main-footer {
        min-height: 90vh;
        background-image: url('imgxv_lc/fondo7t.png'); /* Versión optimizada para tablet */
        background-repeat: no-repeat;
    }
 
}

.mmm{
    text-align: center;
    font-family: "Great Vibes", cursive;
    font-size: clamp(22px, 3.5vw, 30px);
    color:#B9AC7D;
}


@media (max-width: 1400px) {
.cuadro{
    padding: 10px;
    margin-left: 100px;
    margin-right: 100px;
}
}


@media (max-width: 768px) {

p{
    margin-bottom: 0;
}

.fecha-1 {
    font-size: 3em;
}

    .contador {
        font-size: 5vw;
         bottom: 50px;
    }

    .segmento div {
        font-size: 13vw;
    }

    

}



/* Estilos para el mensaje de rotación */
#rotate-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.rotate-content {
    padding: 20px;
    color: white;
    font-family: 'Roboto', sans-serif;
    max-width: 90%;
}

.rotate-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: rotate 2s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Estilos específicos para cuando está en modo landscape */
@media screen and (orientation: landscape) and (max-width: 900px) {
    body {
        
    }
}