* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}



body {
  background-color: #f8f8f8;
  margin:0;
  padding:0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
  background-color:#9dab87;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:120px;
  padding:10px 30px;
}

/* LOGO */
.logo-contenedor {
   display:flex;
  align-items:center;
  gap:15px;
}

.logo-contenedor img {
 width:80px;
  height:auto;
}

.titulos{
  display:flex;
  align-items:center;
  height:80px; /* misma altura aproximada del logo */
}

.titulos h3{
  margin:0;
  color:white;
  font-size:18px;
  font-family:Georgia, serif;
  line-height:1;
}

/* MENU */
nav {
   display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-family: Georgia, serif;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
}

main h1{
  margin: 0 10px;
  color: rgb(14, 13, 13);
  font-weight: bold;
  text-align: left;

}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
}
/* CONTENEDOR GENERAL */
.contenedor{
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* TITULO */
.titulo{
  text-align: center;
  font-size: 60px;
  margin-bottom: 50px;
  font-weight: bold;
}

/* CONTENIDO */
.contenido{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGEN */
.imagen_por img{
  
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
   width: 500px;
  height: 800px;
  
}

/* TEXTO */
.info{
  max-width: 500px;
}

.info p{
  font-size: 28px;
  line-height: 1.7;
  color: #222;
}

/* SUBTITULO */
.info h2{
  font-size: 55px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* LISTA */
.lista{
  list-style: none;
  padding: 0;
}

.lista li{
  font-size: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check{
  color: #2ecc71;
  font-size: 32px;
  font-weight: bold;
}

/* BOTON */
.btn{
  display: inline-block;
  margin-top: 30px;
  background: black;
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover{
  background: #333;
}
.card {
  display: inline-block;
  width: 200px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #fffaf0;
  border-radius: 10px;
} 

.slider-box {
    width: 100%;
    overflow: hidden;
}

.slider-box ul{
    display: flex;
    width: 300%;
    animation: slide 15s infinite alternate ease-in-out;
    padding: 0;
    margin: 0;
}

.slider-box li{
    width: 100vw;
    list-style: none;
    position: relative;
    flex-shrink: 0;
}

.texto{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra exactamente */
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.5em;
  text-align: center;
  max-width: 80%;

}

.texto h2{
    font-size: 45px;
    margin-bottom: 35px;
}

.texto p{
    font-size: 45px;
    margin-bottom: 35px;
}

.slider-box img{
    width: 100%;
      height: 700px;
      object-fit: cover;
}
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(0); }

    38% { transform: translateX(-100vw); }
    66% { transform: translateX(-100vw); }

    71% { transform: translateX(-200vw); }
    100% { transform: translateX(-200vw); }
}

.form-container {
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
 img {
 max-width: 100%;
  display: block;
}


.form-container h2 {
  text-align: center;
  font-size: 1.2em;
  color: #444;
  margin-bottom: 10px;
}

.form-container h3 {
  text-align: center;
  color: #FF4500;
  font-weight: bold;
  margin-bottom: 25px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="password"],
form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input,
.form-row select {
  flex: 1;
}

button {
  background-color: #ed8143;
  color: white;
  padding: 14px;
  width: 100%;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #e03e00;
}

.privacidad {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.privacidad label {
  margin-left: 8px;
  font-size: 0.9em;
}

.privacidad a {
  color: #007bff;
  text-decoration: none;
}

.privacidad a:hover {
  text-decoration: underline;
}

.nota {
  font-size: 0.8em;
  color: #777;
  margin-top: 20px;
  line-height: 1.4;
}
.beneficios {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 60px 20px;
  background-color: #fff;
}

.beneficio {
  max-width: 400px;
}

.beneficio img {
  width: 100%;
  max-width: 250px;
}

.beneficio h3 {
  color: #ed8143;
  font-size: 1.2em;
  margin: 20px 0 10px;
}

.beneficio p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.btn {
  background-color: #ed8143;
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ed8143;
}
.nota2 {
  font-size: 0.9em;
  color: #777;
  padding: 20px 30px;
  max-width: 800px;
  margin: auto;
}

   .contenedor{
      width:90%;
      max-width:1200px;
      margin:auto;
      padding:40px 0;
    }

    .subtitulo{
      text-align:center;
      color:#b08b00;
      font-size:20px;
      margin-bottom:20px;
    }

    .titulo{
      text-align:center;
      font-size:55px;
      font-weight:800;
      margin-bottom:60px;
    }

    .contenido{
      display:flex;
      gap:50px;
      align-items:center;
      justify-content:center;
      flex-wrap:wrap;
    }

    /* IMAGEN */

    .imagen{
      position:relative;
      width:550px;
      border-radius:30px;
      overflow:hidden;
    }

    .imagen img{
      width:100%;
      display:block;
    }

    .texto-imagen{
      position:absolute;
      top:50px;
      left:40px;
      color:white;
      width:70%;
      font-size:20px;
      line-height:1.4;
      font-weight:600;
    }

    .texto-imagen span{
      font-weight:800;
    }

    /* TEXTO DERECHO */

    .info{
      width:500px;
    }

    .info h2{
      font-size:40px;
      font-weight:800;
      margin-bottom:30px;
      line-height:1.2;
    }

    .info p{
      font-size:22px;
      line-height:1.8;
      color:#222;
      margin-bottom:35px;
    }

    .lista{
      list-style:none;
      margin-bottom:40px;
    }

    .lista li{
      font-size:24px;
      margin-bottom:20px;
      display:flex;
      align-items:center;
      gap:15px;
    }

    .check{
      color:#19c15f;
      font-size:28px;
      font-weight:bold;
    }

    /* BOTON */

    .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:black;
      color:white;
      padding:20px 35px;
      border-radius:50px;
      text-decoration:none;
      font-weight:700;
      font-size:20px;
      transition:0.3s;
    }

    .btn:hover{
      transform:scale(1.05);
    }

.form-container {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contactos {
    margin: 15px 0;
    font-size: 20px;
}

.form-container img {
    width: 320px;
    display: block;
    margin: 20px auto 0;
}
  
