/* Estilos generales */

@font-face {
	font-family: "Windsong";
	src: url("../fonts/Windsong.ttf");
}

@font-face {
    font-family: "The Yoshi";
    src: url("../fonts/The Yoshi.ttf");
}

@font-face {
    font-family: "Palisade";
    src: url("../fonts/Palisade.ttf");
}

@font-face {
    font-family: 'high_spiritedregular';
    src: url('../fonts/high_spirited-webfont.woff2') format('woff2'),
         url('../fonts/high_spirited-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    line-height: 20px;
    font-size: 13px;
    margin: 0;
    padding: 0;
    text-align: center;
	letter-spacing: 2px;
	text-transform: uppercase;
}


/* animaciones */

@keyframes anim-fade-in { from { opacity: 0; } to { opacity: 1 } }

@keyframes anim-up { 
	from { opacity: 0; transform: translateY(100px); } 
	to { opacity: 1; transform: translateY(0px); }  
}		

@keyframes anim-down { 
	from { opacity: 0; transform: translateY(-100px); } 
	to { opacity: 1; transform: translateY(0px); }  
}		

@keyframes anim-left { 
	from { opacity: 0; transform: translateX(100px); } 
	to { opacity: 1; transform: translateX(0px); }  
}		

@keyframes anim-right { 
	from { opacity: 0; transform: translateX(-100px); } 
	to { opacity: 1; transform: translateX(0px); }  
}		

.anim-up, .anim-down, .anim-left, .anim-right, .anim-fade-in {
	animation-duration: 1s; /* la animacion dura X segundos */
	animation-delay: 0.5s; /* esperamos X segundos antes de hacer la animacion */			
	animation-fill-mode: both; /* aplica estilos de la animacion antes y despues de reproducirla */
}

.anim-up { animation-name: anim-up; }
.anim-down { animation-name: anim-down; }
.anim-left { animation-name: anim-left; }
.anim-right { animation-name: anim-right; }
.anim-fade-in { animation-name: anim-fade-in; }

.anim-pause-1 { animation-delay: 1s; }    /* la animacion empieza en 1 seg. */	
.anim-pause-15 { animation-delay: 1.5s; } /* la animacion empieza en 1.5 seg. */	
.anim-pause-2 { animation-delay: 2s; }    /* la animacion empieza en 2 seg. */	
.anim-pause-25 { animation-delay: 2.5s; } /* la animacion empieza en 2.5 seg. */	
.anim-pause-3 { animation-delay: 3s; }    /* la animacion empieza en 3 seg. */
.anim-pause-35 { animation-delay: 3.5s; } /* la animacion empieza en 3.5 seg. */
.anim-pause-4 { animation-delay: 4s; } /* la animacion empieza en 4 seg. */
.anim-pause-5 { animation-delay: 5s; } /* la animacion empieza en 5 seg. */

/* todas las animaciones pausadas */
.paused * { 
	animation-play-state: paused;
}
/* termina animaciones */

/* Estilos para la Ventana Modal */
.modal {
    display: flex;
    justify-content: flex-end;
    /*align-items: center;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Para móviles, 100% de la altura */
    background: url('../images/fondoventana.jpg') no-repeat center center;
    background-size: cover;
    z-index: 100000;
}

/* Contenedor modal */
.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
	display: flex;
    justify-content: flex-end; 
	align-items: flex-end; /* Alinea hacia la parte inferior */

	}

.modal-text {
	width: 80%;
    position: relative; /* Posiciona de forma absoluta respecto al contenedor */
    bottom: 0; /* Alinea al fondo */
    left: 0;
    right: 0;
    padding: 3rem;
    text-align: right;
	align-items: flex-end; /* Alinea hacia la parte inferior */
}



.names{
    color: #fef8d6;
    z-index: 2;
    font-size: 5rem;
    font-family: 'Palisade', cursive;
    font-weight: 500;
	line-height: 65px;
	text-transform: none;
}

.modal-adicional {
	position: relative;
    font-family: 'Palisade', cursive;
    color: #c5b38d;
    font-size: 40px;
	padding: 0px;
	padding-right: 15px;
}

.modal .parrafo {
	position: relative;
    font-weight: 400;
    font-style: normal;	
    color: #c5b38d;
    font-size: 14px;
    margin-top: 0px;
	margin-bottom: 0px;
	letter-spacing: 0px;
	line-height: 25px;
	align-content: center;
}

.modal h1 {
	font-size: 5rem;
    color: #000;
    margin: 0;
    padding: 0rem;
    font-family: 'high_spiritedregular', cursive;
    font-weight: 500;	
}

.modal img {
	width: 20rem;
    padding: 0rem;
}

.modal .btn {
	font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #435442;
	font-size: 16px;
    color: #fef8d6;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
	border: 0px;
}

.modal .btn:hover {
    background-color: #6d815f;
	border: 0px;
	color: #fff;
}

/* Ajustes para tabletas */
@media (min-width: 768px) and (max-width: 1024px) {
    .modal {
		display: flex;
        height: 100vh;
        background: rgba(0, 0, 0, 0.1); /* Fondo translúcido para dar efecto ventana */
        justify-content: center; /* Centrar horizontalmente */
		z-index: 10000;
	
    }

    .modal-content {
        width: 600px;
        height: 80vh;
		margin-top: -70px; /* Margen superior de 30px */
        background: url('../images/fondoventana.jpg') no-repeat center center;
        background-size: cover;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4); /* Sombra alrededor de la ventana */
        
    }


    /* Centramos la ventana en la pantalla */
    .modal {
        display: flex;
        justify-content: center;
        align-items: center;
    }
	
	#enter-btn {
		width: 50%;          /* Ocupa todo el ancho */
	}
	
	
	.names2 {
		font-size: 6rem;
	}	
	
	
}

/* Ajustes para computadora */
@media (min-width: 1024px) {
    .modal {
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.1);
    }

    .modal-content {
        width: 600px;
        height: 80vh;
        background: url('../images/fondoventana.jpg') no-repeat center center;
        background-size: cover;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4); /* Sombra alrededor de la ventana */
        position: relative;
    }


    /* Centramos la ventana en la pantalla */
    .modal {
        display: flex;
        justify-content: center;
        align-items: center;
    }

	#enter-btn {
		width: 50%;          /* Ocupa todo el ancho */
	}		
	
	.names2 {
		font-size: 6rem;
	}		
	
}



.pantinicio {
    font-family: 'Libre Caslon Display', sans-serif;
    color: #747474;
    font-size: 20px;
	letter-spacing: 0px;
	line-height: 35px;
	text-transform: uppercase;
}

.pantinicio2 {
    font-family: 'high_spiritedregular', sans-serif;
    color: #ce9e5f;
    font-size: 40px;
	letter-spacing: 0px;
	line-height: 35px;
}

.texto-general{
    font-family: 'Libre Caslon Display', sans-serif;
    color: #747474;
    line-height: 30px;
	letter-spacing: 1px;
    font-size: 22px;
}

.texto-peq{
    line-height: 28px;
    font-size: 18px;
}

.esppeq {
	padding: 10px;
}
.espmed {
	padding: 20px;
}
.espgra {
	padding: 30px;
}

.greeting {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 15px;
	letter-spacing: 4px;
	font-weight: 500;
	text-align: center;
}

.greetingpeq {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 11px;
	letter-spacing: 4px;
	font-weight: 500;
	text-align: center;
	line-height: 18px;
}

.textoclaro {
    font-family: 'Montserrat', sans-serif;
    color: #c9c4ac;
    font-size: 13px;
	letter-spacing: 4px;
	font-weight: 500;
	text-align: center;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    background: url('../images/1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}

.sobreimg{
    position: relative;
    width: 100%;
    height: 85vh; 
	background-image: url("../images/latsup.png"), url('../images/finalfoto.png');
    background-position: bottom left 0px, bottom center;
    background-repeat: no-repeat, no-repeat;
    background-size: 300px, contain; 
    z-index: 3;
    overflow: hidden;
}

/* Contenido de la sección (Texto superpuesto) */
.hero-content {
    position: absolute;
    top: 15%; /* Centra verticalmente */
    left: 50%; /* Centra horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta para centrar perfectamente */
    text-align: center;
	width: 100%;
    z-index: 2; /* Asegura que está encima del fondo */
}

.hero-content img {
	width: 350px;
}

.name-container {
    text-align: center; /* Centra todo el contenido */
    position: relative; /* Base para posicionar el XV */
    display: inline-block; /* Mantiene la estructura contenida */
	width: 100%;
	margin-bottom: 110px;
}

.names2 {
    color: #435442;
    font-size: 70px;
    font-family: 'Palisade', cursive;
	font-weight: 500;
	font-style: normal;
    line-height: 1;
    margin: 0;
    z-index: 10;
    position: relative;
	text-transform: none;
}

.names3 {
    color: #ccc6ae;
    font-size: 60px;
    font-family: 'Palisade', cursive;
	font-weight: 500;
	font-style: normal;
    line-height: 1;
    margin: 0;
    z-index: 10;
    position: relative;
	text-transform: none;
}

.xv2 {
    font-family: 'Libre Caslon Display', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFF;
    position: relative;
    top: -8px;
    right: 0;
    z-index: 5;
    text-shadow: 1px 1px 1px rgba(62, 62, 62, 1), 
                 2px 2px 15px rgba(255, 255, 255, 1); /* Resplandor alrededor */
}


.xv3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #949494;
    position: relative;
    top: -8px;
    right: 0;
    z-index: 5;
}


/* moviles */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
		height: 100vh; 
    }
	
	.sobreimg{
		height: 75vh; 
 		background-attachment: scroll;
		background-size: 300px, auto 70px;
	}

	
	.hero-content img {
		width: 320px;
	}
	

	.names2 {
		font-size: 60px;
	}	

}

@media (max-width: 768px) {

	.sobreimg{
		height: 75vh; 
 		background-attachment: scroll;
		background-size: 250px, auto 70px;
	}
	
	.names2 {
		font-size: 70px;
	}

}

@media (max-width: 400px) {

	.name-container{
		text-align: right; /* Centra todo el contenido */
		position: relative; /* Base para posicionar el XV */
		display: inline-block; /* Mantiene la estructura contenida */
		margin: auto 60px 60px auto;
		width: 100%;
		margin-left: -20px;
	}

}


/* Sección de Presentación con Fondos Responsivos */
.presentacion {
    position: relative;
    width: 100%;
    padding: 20px 0px 30px 0px;
    background: url('../images/fondo01.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    overflow: hidden; 
}

/* Contenido de la Presentación */
.contenido-presentacion {
    max-width: 800px;
    margin: auto;
	padding: 0px 20px 0px 20px;
}

.contenido-presentacion p {
    color: #ccc6ae;
}

.frase-presentacion {
	color: aqua;
}

@media (max-width: 1024px) {
	.contenido-presentacion {
		max-width: 800px;
		margin: auto;
		padding: 0px 30px 0px 30px;
	}
}

@media (max-width: 768px) {
    .presentacion {

    }
}

@media (max-width: 480px) {
    .presentacion {

		padding: 20px 0px 50px 0px;
    }
}

.text-container {
	position: relative;
	text-align: center;
	width: 100%;
	line-height: 1;
}

.line-int {
    font-family: 'Montserrat', serif;
    font-size: 100px;
    position: relative;
    z-index: 1;
	color: rgba(206, 158, 95, .7); /* Blanco con 50% de transparencia */
}

.overlay-int {
	font-size: 50px;
	font-family: 'The Yoshi', cursive;
	color: #747474;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	padding: 10px;
}

/* Sección de Padres y Padrinos */
.nombres-familia {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    text-align: center;
}



/* Columnas */
.columna {
    flex: 1;
    max-width: 400px;
}

/* Encabezados */
.columna h3 {
    font-size: 30px;
	font-family: 'Palisade';
    color: #fef8d6;
    margin-bottom: 10px;
	font-weight: 500;
	text-transform: none;
}

/* Nombres */
.columna p {
    margin: 2px 0;
	color: #ccc6ae;
}

/* Ajuste responsivo: Una sola columna en móviles y tablets */
@media (max-width: 768px) {
    .nombres-familia {
        flex-direction: column;
        align-items: center;
    }

    .columna {
        max-width: 100%;
    }
}

.save-the-date {
    position: relative;
    width: 100%;
    padding: 60px 0px 30px 0px;
    background: url('../images/1a.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    overflow: hidden; 
	align-content: center;
}



@media (max-width: 768px) {

    .save-the-date {
		padding: 60px 0px 30px 0px;
    }
}

@media (max-width: 480px) {

    .save-the-date {
		padding: 60px 0px 30px 0px;
    }
}

.fraseclara {
    font-size: 60px;
	font-family: 'Palisade';
    color: #ccc6ae;
	font-weight: 500;
	text-transform: none;
	line-height: 35px;
}

.fraseclarapeq {
    font-size: 45px;
	font-family: 'Palisade';
    color: #ccc6ae;
	font-weight: 500;
	text-transform: none;
	line-height: 35px;
}

@media (max-width: 768px) {

	.fraseclara {
		font-size: 55px;
	}
}

@media (max-width: 480px) {

	.fraseclara {
		font-size: 50px;
	}
}

.titulosclaro {
    font-size: 55px;
	font-family: 'Palisade';
    color: #ccc6ae;
	font-weight: 500;
	line-height: 30px;
	text-transform: none;
}

.titulossave {
    font-size: 55px;
	font-family: 'Palisade';
    color: #fef8d6;
	font-weight: 500;
	text-transform: none;
}

.titulospeq {
    font-size: 55px;
	font-family: 'Palisade';
    color: #606060;
	font-weight: 500;
	line-height: 30px;
	text-transform: none;
}

.titulospeq1 {
    font-size: 32px;
	font-family: 'Libre Caslon Display';
    color: #ce9e5f;
	font-weight: 500;
	line-height: 35px;
}

.titulospeq2 {
	font-size: 16px;
    color: #3c4f39;
	font-weight: 500;
	line-height: 35px;
	text-transform: uppercase;
}

.fecha {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    color: #ccc6ae;
    gap: 10px; /* Espacio entre elementos */
	letter-spacing: 0px;
}

.fecha span {
    display: flex;
    align-items: center;
}

.corazon {
    font-size: 15px; /* Tamaño del corazón */
    color: #647c64;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.countdown-item {
    text-align: center;
	color: #a3b894;
	font-size: 30px;
    margin: 15px; /* Ajusta el margen para separar los elementos */
}

.countdown-label {
    font-size: 12px;
    color: #ccc6ae;
	text-transform: uppercase;	
    margin-bottom: 5px; /* Añade un margen inferior para separar los nombres de los contadores */
	letter-spacing: 0px;
}

.countdown-value {
    font-size: 30px;
	font-weight: 600;
    color: #ccc6ae;
	line-height: 30px;
	letter-spacing: 0px;
}




/* Sección Dónde Será */
.donde-sera {
    width: 100%;
    padding: 60px 0px 40px 0px;
    text-align: center;
    background: url('../images/fondo02.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
}

/* Contenedor de los lugares */
.contenedor-lugares {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Permite que los elementos se adapten en móviles */
    max-width: 1000px;
    margin: auto;
}

/* Estilos para cada lugar (templo y fiesta) */
.lugar {
    flex: 1;
    max-width: 450px;
    padding: 20px;
    text-align: center;
}

/* Imagen del lugar */
.imagen-lugar {
    width: 35%;
    height: auto;
    margin-bottom: 10px;
}

.location-container {
	text-align: center;
	align-content: center;
	justify-content: center;
	margin-top: 20px;
}

/* Encabezados */
.titlugares {
    font-size: 45px;
	font-family: 'high_spiritedregular';
    color: #a3b894;
	text-transform: none;
	font-weight: 200;
}

.location-button {
	background: #435442;
	color: #fef8d6;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	padding: 10px 20px;
	border: 1px #a3b894 solid;
	border-radius: 20px;
	font-size: 14px;
	letter-spacing: 2px;
	cursor: pointer;
	text-decoration: none;
	align-items: center;
}

.location-button:hover {
	background-color: #ccc6ae;
	border: 1px #435442 solid;
	color: #435442;
}

.hora {
    font-size: 25px;
	font-weight: 600;
	color: #435442;
	text-align: center;
}

/* Responsivo: Una sola columna en móviles y tablets */
@media (max-width: 768px) {
    .contenedor-lugares {
        flex-direction: column;
        gap: 20px;
    }

    .lugar {
        max-width: 100%;
    }
}

/*--- Galería ---*/

* {
  box-sizing: border-box;
}

.slider {
	width: 90%;
	max-width: 650px;
	padding: 0;
	margin: 0px auto 0;
	height: 500px;
	position: relative;
}
.slider ul, .slider ul li {
	width: 100%;
	height: 100%
}
.slider ul {
	position: relative;
	overflow: hidden;
	border-radius: 0px
}
.slider ul li {
	position: absolute;
	top: 0;
	left: -100%;
	background-size: cover; /* semon #f98686 */
	background-position: center;
	color: #fff;
	font-family: serif;
}
.slider ul li:first-of-type {
	background-image: url("../images/galeria/01.jpg")
}
.slider ul li:nth-of-type(2) {
	background-image: url("../images/galeria/02.jpg")
}
.slider ul li:nth-of-type(3) {
	background-image: url("../images/galeria/03.jpg")
}
.slider ul li:nth-of-type(4) {
	background-image: url("../images/galeria/04.jpg")
}
.slider ul li:last-of-type {
	background-image: url("../images/galeria/05.jpg")
}
.slider .controll {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 44%;
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	cursor: pointer;
	color: #333;
	z-index: 10000;
	display: none;
}
.slider .controll:first-of-type {
	transform: rotate(45deg);
	left: 25px;
	z-index: 10000;
}
.slider .controll:last-of-type {
	transform: rotate(225deg);
	right: 25px;
	z-index: 10000;
}
.slider .controll:hover, .slider .controll.active {
	border-color: #f98686; /* rose */
	z-index: 10000;
}

/* contenedor de galería */

.contgaleria {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px 0px;
    overflow: hidden; 
    background: url('../images/2.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
}

/* Contenido de la Presentación */
.contenido-galeria {
	max-width: 720px;
	background-color: #e5e4df; 
	margin: auto;
	padding: 10px 0px 30px 0px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
	transform: rotate(-5deg) !important;
}

.fotosobre{
	position: relative;
	bottom: 40px;
	left: 200px;
	transform: rotate(5deg) !important;
}

.textofoto1{
    font-family: 'Palisade';
    color: #ccc6ae;
    font-size: 50px;
    font-weight: 500;
	padding-top: -30px;
	text-transform: none;
	line-height: 30px;
}

.textofoto2{
    font-family: 'Montserrat', sans-serif;
    color: #a3b894;
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
	font-weight: 800;
}


@media (max-width: 768px) {
	.slider {
		height: 450px;
		width: 90%;
	}
	.contenido-galeria {
		padding: 8px 0px 25px 0px;
		width: 90%;
	}
	.textofoto{
		bottom: 0px;
	}
	.contgaleria {
		padding: 60px 0px 50px 0px;	
	}
	.fotosobre{
		left: 60px;
	}
}


/* Sección Itinerario */
.itinerario {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: url('../images/fondo02.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
}

.contenedor-itinerario {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.item-itinerario {
	flex: 1 1 calc(25% - 20px); /* 4 columnas en escritorio */
	text-align: center;
}

.imagen-itinerario {
	width: 100%;
	height: auto;
	max-width: 120px; /* ajustable según diseño */
	margin: 0 auto;
}

@media (max-width: 768px) {
	.item-itinerario {
		flex: 1 1 100%; /* 1 por fila en móviles */
	}
}




/* Estilo del texto de la actividad */
.actividad {
    color: #808981;
    font-size: 29px;
    font-family: 'high_spiritedregular', cursive;
}

/* Estilo del horario */
.horario {
    font-size: 16px;
	text-transform: uppercase;
	padding-right: 18px;
	letter-spacing: 1px;
}
/* Estilo del horario */
.horarioright {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}



.secvisual {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px 0px;
    overflow: hidden; 
	height: 100vh;
    background: url('../images/3.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
}


/* Sección Mesa de Regalos */
.mesa-de-regalos {
    width: 100%;
    padding: 80px 10px 20px 10px;
    text-align: center;
    background: url('../images/fondo01.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
}


@media (max-width: 768px) {

    .mesa-de-regalos {
		 width: 100%;
    }
}

@media (max-width: 480px) {

    .mesa-de-regalos {
 		width: 100%;
    }
}



/* Contenedor de las mesas */
.contenedor-mesas {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Permite que los elementos se adapten en móviles */
    max-width: 1000px;
    margin: auto;
	padding-top: 20px;
}

/* Estilos para cada mesa */
.mesa {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

/* Imagen de la mesa de regalos */
.imagen-mesa {
    height: 130px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/*  Responsivo: Una sola columna en móviles y tablets */
@media (max-width: 768px) {
    .contenedor-mesas {
        flex-direction: column;
        gap: 20px;
    }

    .mesa {
        max-width: 100%;
    }
}

.asistencia {
    position: relative;
    width: 100%;
    padding: 3px 0px 30px 0px;
    background-color: #fff; 
    background: url('../images/fondo02.jpg') no-repeat center center;
    background-size: cover;
    background-position: center; 
    overflow: hidden; 
}

/* Contenido de la Presentación */
.contenido-asistencia {
    max-width: 800px;
    margin: auto;
	padding: 50px 20px 0px 20px;
}

.cantpases {
	font-family: 'Montserrat', sans-serif;
    font-size: 20px;
	font-weight: 600;
	color: #83202b;
	text-align: center;
}

@media (max-width: 768px) {

    .asistencia {
		width: 100%;
    }
}

@media (max-width: 480px) {

    .asistencia {
        width: 100%;
    }
}




/* Sección Pase para la Recepción */
.pase-recepcion {
    background: url('../images/fondo03.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    width: 100%; /* Abarca todo el ancho del dispositivo */
    display: flex;
    justify-content: center;
	flex-direction: column;
    align-items: center;
    padding: 60px 0 20px 0; /* Espacio arriba y abajo */
	gap: 20px;
}

/* Contenedor del Pase */
.pase-contenedor {
    position: relative; /* Necesario para posicionar el texto encima de la imagen */
    width: 100%; /* Abarca todo el ancho */
    max-width: 450px; /* Ancho fijo en tabletas y computadoras */
}

/* Imagen del Pase */
.pase-imagen {
    width: 100%; /* 100% del ancho en móviles */
    height: auto; /* Mantiene la proporción */
    display: block;
}

/* Texto encima de la imagen */
.pase-texto {
    position: absolute; /* Posiciona el texto sobre la imagen */
    top: 555px; /* Espacio desde la parte superior */
    width: 100%; /* Abarca todo el ancho del contenedor */
    text-align: center; /* Centra el texto */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espacio entre los renglones */
}

/* Renglones adicionales debajo del contenedor */
.renglones-adicionales p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
    text-align: center;
    margin: 5px 0;
	padding: 30px;
}

.espadicional {
	padding: 0 30px 0 30px;
}

/* Responsividad: Ancho fijo en tabletas y computadoras */
@media (min-width: 768px) {
    .pase-contenedor {
        width: 400px;
    }
	.pase-texto {
		top: 560px; /* Espacio desde la parte superior */
	}
}



.derechos {
    font-family: 'Montserrat', sans-serif;
    color: #ccc6ae;
    font-size: 15px;
    margin-top: 40px;
	margin-bottom: 0px;
	letter-spacing: 4px;
	font-weight: 500;
	text-transform: uppercase;
}
