:root {
	--Color-Rojo: #ed1c27;
	--Color-Rojo-Oscuro: #c2161f;
	--Color-Blanco: #ffffff;
	--Color-Negro: #585858;
	--Color-Gris: #F4F4F4;
	--Color-Fondo: #f6f6f6;
}


/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto Condensed', sans-serif;
	color: var(--Color-Negro);
}

.deco {
	position: absolute;
	top: 980px;
	width: 100%;
}

.ver {
	display: block;
}

.legal {
	position: absolute;
	top: 180px;
	right: 10px;
	width: 20px;
	z-index: 3;
}

.lemotive {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 8%;
}

body {
background: #EDEDED;
background: -webkit-linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
background: -moz-linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
background: linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EDEDED", endColorstr="#EDEDED", GradientType=1);
}


.fondo-animado {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/M9hVA-bc86be5f-f4be-4c5c-b5e6-dc8f8d411462_251710_keyVi_fondo.png"); /* 👈 cambia tu PNG aquí */
  background-repeat: repeat;
  background-size: cover;
  animation: moverFondo 20s linear infinite;
  z-index: -1;
  opacity: 0.5; /* nivel de transparencia */
}

@keyframes moverFondo {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 0; /* Se mueve horizontalmente */
  }
}

/* HOME */

.titular {
	padding-top: 50px;
	margin-bottom: 30px;
}

/* ADVERTENCIA */
.info .advertencia {
	padding: 50px 20px 10px 20px;
	margin-bottom: 50px;
	border: 1px solid #eee;
	border-radius: 20px;
    background-color: #ffffff;
}

.info .advertencia h1 {
	color: var(--Color-Rojo) !important;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.info .advertencia h1 > span {
text-decoration: underline;
color: var(--Color-Rojo) !important;
}

.info .advertencia p {
	font-size: 1rem;
	text-align: justify;
}

.info .advertencia p span {
	font-style: italic;
}

.texto-resaltar {
    background: #EDEDED;
background: -webkit-linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
background: -moz-linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
background: linear-gradient(90deg, rgba(237, 237, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EDEDED", endColorstr="#EDEDED", GradientType=1);
border-radius:20px;
padding:30px;
}

.resaltar-textos2 {
    background-color: var(--Color-Rojo);
    padding:10px 50px;
    border-radius: 20px;
    color: var(--Color-Blanco) ;
    width: max-content;
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
}

.resaltar-textos2 > b {
   
    color: var(--Color-Blanco) ;
}

/* INFORMACION */
.info {
	margin-top: 50px;
	text-align: center;
}

.info p {
	font-size: 1.8rem;
}

.info ul {
	list-style: none;
}

.info ul li {
	font-size: 1.5rem;
}

.info ul li span {
	color: var(--Color-Rojo);
	font-weight: bold;
	font-style: italic;
}

.info .separador {
	margin: 30px 0px
}

.carrusel {
	margin-top: 0px;
	margin-bottom: 30px;
}

.swiper-pagination {
    background-color: rgba(237, 237, 237, 0.8);
    width: max-content !important;
    padding:0px 10px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    border-radius:50px;
    bottom: 5px;

}
.swiper-pagination-bullet-active {
    background: var(--Color-Rojo) !important;
}

.swiper-wrapper {
    padding-bottom:50px;
}

/* Inicio banner */

div.swiper-slide.banner {
	background-color: #ffffff;
	min-height:150px !important;
	border-radius:30px;
	padding:20px;
	display: flex;
	align-items: center;
}

/* Fin banner */

/* BENEFICIOS */
.beneficios {
	margin-top: 50px;
	margin-bottom: 50px;
}

.beneficios .beneficio {
    background-color: #ffffff;
	border-radius: 30px;
    padding:20px;
box-shadow:  14px 14px 28px #d0d0d0,
             -14px -14px 28px #ffffff;
}

.beneficios .beneficio .imagen {
	display: flex;
	align-items: center;
	justify-content: center;
    animation: floatMini 2.5s ease-in-out infinite;
}

@keyframes floatMini {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* Movimiento pequeño y natural */
  }
}

.beneficios .beneficio .imagen img {
	width: 50%;
	margin-top: -80px;
	margin-bottom: 30px;
    background-color: #ed1c27;
    border-radius:20px;
    transition: transform 0.3s ease;
}

.beneficios .beneficio h2 {
	font-size: 1.8rem;
	color: var(--Color-Rojo);
	text-align: center;
	margin-bottom: 30px;
    font-weight:bold;
}

ul.superlist  {
list-style: none; /* Quita los puntos por defecto */
  padding: 0;
  margin: 0;
  color: var(--Color-Negro);
}

ul.superlist li {
    
	 position: relative;
  padding-left: 30px; /* Espacio para el ícono */
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

ul.superlist li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0%;
  transform: translateY(20%);
  width: 15px;
  height: 15px;
  background-image: url("../img/6rcpV-a28f96b1-e1b7-4790-99f4-d6939abcbe64_251710_keyVi_davi1.png"); /* 👉 Cambia esta URL por tu imagen */
  background-size: cover;
  background-repeat: no-repeat;
}

ul.superlist li ul {
	list-style: none; /* Quita los puntos por defecto */
  padding: 0;
  margin: 0;
  color: var(--Color-Negro);
}

ul.superlist li ul li {
	 position: relative;
  padding-left: 30px; /* Espacio para el ícono */
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

ul.superlist li ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0%;
  transform: translateY(20%);
  width: 15px;
  height: 15px;
  background-image: url("../img/z144m-32a93ab0-c27d-4db1-8c1d-f6552a98b2e7_251710_keyVi_davi2.png"); /* 👉 Cambia esta URL por tu imagen */
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-img {
  display: inline-block;
  animation: pulseGlow 3s ease-in-out infinite;
  max-width: 120px;
}

.cta-img img {
  width: 200px;
  transition: transform 0.3s ease;
}

.cta-img:hover img {
  transform: scale(1.15) rotate(2deg);
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 0, 4, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 4, 0.1));
  }
}

/* CANALES */
.canales {
	margin-bottom: 30px;
}

.canales p {
	font-size: 2rem;
	text-align: center;
}

.canales p span {
	color: var(--Color-Rojo);
	font-weight: bold;
	font-style: italic;
}

.canales h5 {
	text-align: center;
	margin-top: 10px;
}

/* RECUADRO */
.recuadroSuperior {
	background-color: var(--Color-Negro);
	border-radius: 30px 30px 0px 0px;
	box-shadow: 0px 3px 8px rgb(160, 160, 160);
}

.recuadroSuperior h4 {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 2rem;
	padding: 0px 30px;
	font-weight: bold;
	color: var(--Color-Blanco);
}

.recuadroInferior {
	background-color: var(--Color-Fondo);
	border-radius: 0px 0px 30px 30px;
	box-shadow: 0px 3px 8px rgb(160, 160, 160);
	margin-bottom: 50px;
}

.recuadroInferior h5 {
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 1.5rem;
	padding: 0px 30px;
	font-weight: bold;
	color: var(--Color-Rojo);
}

.recuadroInferior p {
	font-size: 1rem;
	padding: 0px 30px;
}

.recuadroInferior p a {
	color: var(--Color-Rojo);
	text-decoration: underline;
	font-style: italic;
	font-weight: bold;
}

.recuadroInferior p a:hover {
	color: var(--Color-Rojo-Oscuro);
	text-decoration: underline;
}

/* FOOTER */
footer {
	background-color: var(--Color-Gris);
}

footer .terminos {
	padding-top: 30px;
	margin-bottom: 20px;
}

footer p {
	margin-bottom: 20px;
}

footer p a {
	font-style: italic;
	text-decoration: underline;
	color: var(--Color-Negro);
}

footer p a:hover {
	color: #3c3c3c;
}

footer img {
	margin-bottom: 30px;
}


@media (max-width: 912px) {
	.deco {
		position: absolute;
		top: 550px;
		width: 100%;
	}

	.legal {
		position: absolute;
		top: 120px;
		right: 10px;
		width: 20px;
	}
}

@media (max-width: 425px) {
	.lemotive {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 15%;
	}

	.ver {
		display: none;
	}

	.deco {
		position: absolute;
		top: 800px;
		width: 100%;
	}

	.beneficios .beneficio {
		border-radius: 30px;
		height: 670px;
		box-shadow: 0px 3px 8px rgb(160, 160, 160);
		margin-bottom: 80px;
		margin-top: 10px;
	}

	footer p {
		font-size: 0.8rem;
	}

    .resaltar-textos2 {
   width: 100%;
}

.home {
   padding-top: 50px;
}

.imagen-header {
    max-height:200px;
}
}