@charset "utf-8";
/*MODAL, SE VE CUANDO PROCESA EL ENVIO DEL MENSAJE POR EL FORM DE CONTACTO*/
#loadingCharge {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}
/*MODAL, SE VE CUANDO PROCESA EL ENVIO DEL MENSAJE POR EL FORM DE CONTACTO*/

/*SLIDER ==========================================================================================================================*/
/* Caja blanca flotante */
.overlay-box {
  position: absolute;
  width: 40%;
  height: 200px;
  background: rgba(255, 255, 255, 0.5); /* Blanco semi-transparente */
  color: #000;
  padding: 15px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  text-align: left;  /* 👈 alinear todo el texto a la izquierda */

  /* 👉 Cambia estos valores para mover el cuadro */
  top: 55%;    /* distancia desde arriba */
  left: 10%;   /* distancia desde la izquierda */
  /* También puedes usar right: XXpx o bottom: XXpx */
}

.overlay-box h3{
	color: #FFC107;
	font-family: OpenSans-Regular;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 40px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 20px;
	text-align: left;
	display: block;
	box-sizing: border-box;
	text-shadow: 1px 1px 3px rgba(0,0,0,1.00); /* 👈 sombra ligera */
}

.overlay-box p{
	color: #000000;
	font-family: OpenSans-Light;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 16px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	display: block;
	box-sizing: border-box;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,1.00); /* 👈 sombra ligera */*/
}

@media (max-width: 800px) {
  .overlay-box {
    position: absolute;
    width: 60%;
    height: 400px;
    background: rgba(255, 255, 255, 0.5); /* Blanco semi-transparente */
    color: #000;
    padding: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    border-radius: 8px;
    text-align: center; /* 👈 centra el texto */

    /* 👉 Centrando el cuadro */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .overlay-box h3 {
    color: #FFC107;
    font-family: OpenSans-Regular;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 20px 0;
    text-align: center; /* 👈 centra el título */
    text-shadow: 1px 1px 3px rgba(0,0,0,1.00);
  }

  .overlay-box p {
    color: #000000;
    font-family: OpenSans-Light;
    font-weight: bold;
    font-size: 16px;
    text-align: center; /* 👈 centra el párrafo */
    margin: 0;
    /*text-shadow: 1px 1px 1px rgba(0,0,0,1.00);*/
  }
}

/*SLIDER ==========================================================================================================================*/

.box1_Index{
	background-color: #FFF;
	margin: 0px;
	padding: 7px;
	min-height: 300px; /* al menos 300px, pero puede crecer */
	height: auto;
	width: 100%;
	border: thin none #CCC;
	box-sizing:border-box;
	display:inline-block;
	box-shadow: 1px 1px 10px rgba(0, 0, 8, 0.2);
	transition: transform 0.3s ease-in-out; /* Añade una transición para suavizar el efecto */
}

.box1_Index:hover {
    transform: scale(1.05); /* Escala el elemento al 105% de su tamaño original */
}

.box1_Index2{
	background-color: #FFF;
	margin: 0px;
	padding: 7px;
	min-height: 300px; /* al menos 300px, pero puede crecer */
	height: auto;
	width: 100%;
	border: thin none #CCC;
	box-sizing:border-box;
	display:inline-block;
	box-shadow: 1px 1px 10px rgba(0, 0, 8, 0.2);
	transition: transform 0.3s ease-in-out; /* Añade una transición para suavizar el efecto */
}

.box1_Index2:hover {
    transform: scale(1.05); /* Escala el elemento al 105% de su tamaño original */
}