* {
    /* font-family: 'Poppins-Light', sans-serif; */
    font-family: "DM Sans", system-ui;
}

body {
    background: #e2e2e2;
}

#MainContainer {
    /* border: 1px solid; */
    width: 90%;
    /* Ancho dinámico para móviles */
    max-width: 60rem;
    /* Máximo ancho para pantallas grandes */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


#HeadingBanner {
    display: flex;
    justify-content: center;
}

#HeadingDescription {
    text-align: justify;
    padding: 2rem;
}

#Footer {
    padding: 2rem;
}

#RouletteContainer {
    /* width: 125rem; */
    width: 110rem;
    /* height: 10rem; */
    position: fixed;
    /* left: -65rem; */
    left: -50rem;
    /* top: 12rem; */
    top: 15rem;

}

#RouletteMarker {
    width: 200px;
    position: fixed;
    /* right: 5rem; */
    right: 1rem;
    top: 65rem;
}

#RouletteImage {
    /* Definir la animación, pero sin activarla aún */
    animation-duration: 8s;
    /* animation-timing-function: ease-in-out; */
    /* animation-timing-function: cubic-bezier(0.84, 0.15, 0.32, 0.72); */
    animation-timing-function: cubic-bezier(0.18, 0.02, 0, 1.00);
    animation-fill-mode: forwards;
    /* Mantener el estado final */
}

#tsparticles {
    z-index: 2;
    position: absolute;
}


/* Estilos para el modal */
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    /* Fijo en la pantalla */
    z-index: 1;
    /* Sobre otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    /* Ancho completo */
    height: 100%;
    /* Altura completa de la pantalla, usando viewport height */
    overflow: hidden;
    /* Desactiva el scroll dentro del modal */
    background-color: rgba(0, 0, 0, 0.4);
    /* Fondo con opacidad */
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* Ancho de la ventana modal */
    max-height: 85vh;
    /* Altura máxima de la ventana modal */
    overflow-y: auto;
    /* Scroll si el contenido es demasiado largo */
    background-color: #fff;
    /* Fondo blanco */
    padding: 20px;
    /* Espaciado interno */
    border-radius: 5px;
    /* Bordes redondeados */

    background: #ffffff;
    /* background-image: url(../../images/background.png); */
    background-position: center;
    background-size: calc(100% - 20px);
    /* Ajusta el tamaño de la imagen con espacio alrededor */
    background-repeat: no-repeat;
    background-origin: content-box;
    /* La imagen de fondo comienza desde el área de contenido */
    background-clip: padding-box;
    /* La imagen se recorta al área de padding */
    padding: 10px;
    /* Agrega espacio alrededor del contenido */
}


.modal h1,
.modal h2 {
    text-align: center;
    font-size: 6rem;
    font-weight: 600;
    color: white;
}

.modal p {
    text-align: center;
    font-size: 3rem;
}

.modal input.checkterms {
    transform: scale(3);
}

.modal input[type="checkbox"] {
    transform: scale(3);
}

.modal .checkbox-label {
    text-align: center;
    font-size: 3rem;
}

.modal .terms-check {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Contenido del modal */
.modal-content {
    background-color: #01031e !important;
    margin: auto;
    padding: 8rem 4rem;
    border: 1px solid #888;
    height: auto;
    /* max-width: 500px; */
    border-radius: 1rem;

}

.modal-header {
    display: flex;
    justify-content: center;

}

/* Estilos para el botón */
#startBtn,
#claimBtn,
#sendFormBtn,
#seeProductsBtn {
    /* background-color: #4CAF50; Verde */
    background-color: #000;
    /* Verde */
    border-radius: 1rem;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 3rem;
    margin: 4px 2px;
    cursor: pointer;
    width: 100%;

}

#sendFormBtn:disabled {
    background-color: #c5c5c5;
    color: rgb(114, 114, 114);
}

#claimForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* Espacio entre campos */
}

/* Estilos para cada campo del formulario */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-field label {
    font-size: 3rem;
    /* Tamaño del texto de la etiqueta */
}

.form-field input {
    padding: 0.5rem;
    font-size: 3rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    border: 1px solid;
}

.form-field textarea {
    font-size: 2rem;
    height: 10rem;
    border-radius: 0.5rem;
    border: 1px solid;
}




/* Botón deshabilitado */
#startBtn:disabled {
    background-color: #ccc;
    /* Gris claro */
    cursor: not-allowed;
}

/* Media queries para adaptabilidad */
@media (max-width: 768px) {
    #MainContainer {
        width: 95%;
        /* Más ancho en pantallas más pequeñas */
    }

    #HeadingDescription,
    #Footer {
        padding: 1rem;
        /* Reducir padding en pantallas pequeñas */
    }

    #startBtn {
        padding: 10px 20px;
        /* Ajustar padding del botón */
        font-size: 14px;
        /* Reducir tamaño de fuente del botón */
    }
}


.final-step-confirmation {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.final-step-confirmation h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: 600;
    color: white;
}

.final-step-confirmation p {
    text-align: center;
    font-size: 3rem;
}


/* HOME STYLES */

.heading {
    background: url(../../images/screenimage-01.png);
    display: flex;
    flex-direction: column;
    gap: 10rem;

    background-size: auto !important;
    background-position-x: center;
    background-position-y: center;
    height: fit-content;
	padding-bottom: 50px;
	background-repeat: no-repeat;

}

.heading-top svg {
    position: absolute;
    width: 344.75px;
    height: 78.96px;
    left: 75px;
    top: 75px;
}

.heading-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.heading-bottom h1 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 58px;
    line-height: 84px;
    text-align: center;
    color: #FFFFFF;
	margin-bottom: 0px;
	margin-top: 0px;
}

.titulo2, .product-text h3, .num, .p-pre2 {
	font-family: "Montserrat", sans-serif !important;
	font-weight: 200;
}

.heading-bottom p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    width: 90%;
}

.heading-bottom a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.heading-bottom a div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.heading-bottom a div:hover {
    scale: 1.1;
}

.heading-bottom span {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 33px;
    text-align: center;
    color: #FFFFFF;
}

.body {
    display: flex;
    padding: 0rem;
    background: #ffffff;
    background-image: url(../../images/background.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}

.body-image {
    padding: 5rem;
}

.body-image img {
    width: 30rem;
}

.body-text {
    padding: 10rem;
}

.footer {
    background-color: #000;
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.footer a {
    padding: 1rem;
    border: 1px solid white;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.footer a:hover {
    scale: 1.1;
}

/* Media Query */
@media (max-width: 1200px) {

    .heading-bottom p {
        width: 75%;
        font-size: 3rem;
        line-height: unset;
    }

    .heading-bottom span {
        font-size: 3rem;
    }

    .body {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .body-image {
        padding: 1rem;
    }

    .body-image img {
        width: 50rem;
    }


    .body-text {
        text-align: justify;
        padding: 5rem;
    }

    .footer a {
        padding: 3rem;
        width: 100%;
        text-align: center;
    }

    .footer a:hover {
        scale: 1;
    }

}



/* Terms and conditions */
.heading-top-terms-conditions {
    display: flex;
    justify-content: center;
}

.terms-and-conditions-content {
    position: relative;
    /* Necesario para que el pseudo-elemento se posicione correctamente */
    width: 50rem;
    margin: 0 auto;
    text-align: justify;
    z-index: 1;
    /* Asegúrate de que el contenido esté por encima del pseudo-elemento */
    /* Ajustes adicionales para el contenido */
    padding: 10px;
}

.terms-and-conditions-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../images/background.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
    /* Aplica el filtro aquí */
    z-index: -1;
    /* Coloca el pseudo-elemento detrás del contenido */
    opacity: 0.8;
    /* Ajusta la opacidad si es necesario */
}



#carrousel-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gift-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 2rem;


}

.gift-container:hover {
    scale: 1.1;
}

.gift-image img {
    height: 400px;
    border-radius: 2rem;
}

.gift-info {}

.gift-name {}

.gift-description {}


/* Media queries para adaptabilidad */
@media (max-width: 768px) {
    #carrousel-container {
        flex-direction: column;
    }

    .footer {
        font-size: 2rem;
    }

    .gift-name {
        max-width: 80%;
        text-align: center;
    }
}


/* Media Query */
@media (max-width: 1200px) {
    #carrousel-container {
        flex-direction: column;
    }

    .footer {
        font-size: 2rem;
    }

    .gift-name {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }
}

body {
	margin: 0px;
}

/* 09-04-205 */
.logoJ img {
	max-width: 259px;
    margin-top: 30px;
    margin-left: 30px;
}

.titulo2 {
	font-size: 35px;
	margin-bottom: 20px;
    margin-top: 0px;
}

#body-container {
	background-color: #01031e;
}

.descubre-premios {
	color: white;
	text-align: center;
}

.participar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 5%;
  padding-top: 5%;
}

.bloque1,
.bloque2 {
  flex: 1;  /* Hace que ambos bloques se estiren igual */
  box-sizing: border-box; /* Para que el padding no afecte el ancho */
}

@media (min-width: 768px) {
	.bloque1 img {
	  max-width: 70%;
	  text-align: right;
	}
}

/* Estilo para pantallas más pequeñas (por ejemplo, móviles) */
@media (max-width: 768px) {
  .bloque1, 
  .bloque2 {
    flex: 0 0 100%; /* Apilan los bloques */
  }
  
  .participar {
	  max-width: 100% !important;
	  gap: 0px !important;
  }
  
  .bloque1 img {
    max-width: 90% !important;
  }
}

.bloque2 {
	color: white;
}

@media (min-width: 768px) {
	.bloque1 {
		text-align: right;
		padding-right: 40px;
	}
	
	.product-text {
		margin-top: -40px;
	}
}

body, .footer {
	background-color: #01031e !important;
}

.num {
	display: block;
    float: left;
    width: 5%;
	font-weight: bold;
}

.nums p {
	display: block;
    width: 90%;
	margin-left: 15px;
    float: left;
	margin-top: 0px;
}

.logoJ2 {
	position: absolute;
	right: 20px;
    top: 40px;
}

.logoJ2 img {
    max-width: 182px;
    width: 80%;
}


@media (max-width: 1200px) {
    .footer a {
        padding: 1rem;
        width: 100%;
        text-align: center;
		font-size: 26px;
    }
	
	.heading-bottom p {
        width: 95%;
        font-size: 1.5rem;
        line-height: unset;
    }
	
	.heading-bottom h1 {
		font-size: 48px;
		line-height: 64px;
	}
	
	.heading {
		gap: 5rem;
	}
	
	.logoJ img {
		width: 47%;
	}
	
	.logoJ2 img {
		width: 70%;
	}
	
	.logoJ2 {
		text-align: right;
	}
	
	.product-text {
		margin-top: -50px;
	}
	
	.swiper-slide img {
		width: 70% !important;
	}
	
	.participar {
		margin-top: 30px;
	}
	
	.bloque1, .bloque2 {
		text-align: center;
	}
	
	.titulo2 {
		margin-bottom: 20px;
		margin-top: 40px !important;
	}
	
	.bloque2 {
		max-width: 90%;
		margin: 0 auto;
	}
	
	.nums p {
		width: 85%;
		margin-left: 12px;
		text-align: left;
	}
	
	.pre-footer {
		max-width: 90%;
		margin: 0 auto !important;
	}
	
	.footer {
		padding: 0px;
	}
	
	.p-pre2 {
	    font-size: 22px !important;
		margin-top: 70px;
	}
}