.hero {
    background-image: url('../assets/1.jpg'); /* Ruta relativa desde la carpeta 'style' */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
}

/* Contenedor opcional */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Botón de llamado a la acción */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00;
}



.como-vender {
  padding: 60px 20px;
  background-color: #ffffff;
}

.como-vender .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.columna {
  flex: 1 1 45%;
  padding: 20px;
}

.izquierda h2 {
  font-size: 28px;
  color: #1c4b8b;
  margin-bottom: 20px;
  font-weight: 700;
}

.boton-afiliate {
  display: inline-block;
  background-color: #ff7b4d;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  border: 2px solid #ff7b4d;
  transition: background-color 0.3s;
}

.boton-afiliate:hover {
  background-color: #e8683c;
}

.derecha h3 {
  color: #ff6a2c;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.pasos {
  list-style: none;
  padding: 0;
}

.pasos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.pasos .icono {
  font-size: 20px;
  margin-right: 10px;
  color: #1c4b8b;
  min-width: 24px;
}

.final {
  margin-top: 20px;
  color: #ff6a2c;
  font-weight: bold;
}
#beneficios {
  padding-top: 70px; /* espacio igual a la altura del header */
  margin-top: -70px; /* para no aumentar espacio extra visual */
}
.benefits-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 1rem;
}

.icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 1.5s ease;
  cursor: pointer;
}

.icon:hover {
  transform: rotate(360deg);
}



/* Contenedor general de las tarjetas */
.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  height: 400px; /* Altura fija para todas */
  box-sizing: border-box;
}

/* Imagen del cliente */
.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover; /* Recorta y centra sin deformar */
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Texto del testimonio */
.testimonial-item p {
  flex-grow: 1; /* Toma el espacio disponible */
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nombre del cliente */
.testimonial-item span {
  font-weight: bold;
  color: #333;
}
html {
  scroll-padding-top: 80px; /* Ajusta este valor al alto de tu menú fijo */
}
.testimonials h2 {
  text-align: center;
  font-size: 36px; /* Más grande */
  color: #007BFF;  /* Azul (puedes cambiar el tono si deseas) */
  margin-bottom: 10px;
}

.testimonials p {
  text-align: center;
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
   


footer {
    padding: 20px 0;
    font-family: Arial, sans-serif;
    background-color: #003087;
    color: white;
}

footer .container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    box-sizing: border-box;
}

footer .column {
    flex: 0 0 25%; /* 4 columnas iguales */
    box-sizing: border-box;
    padding: 0 10px;
}

footer .column p {
    margin: 5px 0;
}

footer .column a {
    color: #00a1f1;
    text-decoration: none;
}

footer .column a:hover {
    text-decoration: underline;
}

/* Responsive para pantallas medianas */
@media (max-width: 800px) {
    footer .column {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}

/* Responsive para móviles */
@media (max-width: 500px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .column {
        flex: 0 0 100%;
        padding: 10px 0;
    }
}
.promo-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 40px; /* espacio entre columnas */
  flex-wrap: wrap; /* que en pantallas muy pequeñas se adapten */
}

.promo-logo-container {
  flex: 0 0 250px; /* ancho fijo para la columna del logo */
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.promo-text {
  flex: 1; /* ocupa el resto del espacio */
  min-width: 280px; /* mínimo para texto */
}










/* Nueva sección independiente */
.seccion-nueva {
  background-color: #fff;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.container-nueva {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Columnas */
.columna {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Izquierda */
.columna.izquierda h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #003087;
}

.boton-afiliate {
  display: inline-block;
  background-color: #ff6200;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.boton-afiliate:hover {
  background-color: #e55b00;
}

.columna.izquierda h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.4;
  color: #555;
}

.pasos {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.pasos li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
}

.icono {
  font-size: 1.5rem;
  display: inline-block;
  width: 30px;
  text-align: center;
}

.final {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #666;
}

/* Derecha */
.columna.derecha {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.promo-logo-container {
  margin-bottom: 20px;
}

.promo-logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.promo-text h2 {
  color: #ff6200;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.promo-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .container-nueva {
    flex-direction: column;
  }

  .columna {
    flex: 1 1 100%;
  }

  .columna.derecha {
    text-align: left;
    align-items: flex-start;
  }
}







body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.app-section {
    background-color: #003087;
    color: white;
    text-align: center;
    padding: 20px;
}

.app-section h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.objective {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.options-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.option {
    max-width: 300px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 5px;
}

.option img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.option h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.option p {
    font-size: 0.9em;
    text-align: left;
}

@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
}




.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1 1 48%;
  box-sizing: border-box;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #003087;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #00206b;
}

.contact-info i {
  margin-right: 10px;
  color: #003087;
}

.contact-info p {
  margin: 15px 0;
  font-size: 16px;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin-top: 20px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .mapa iframe {
    height: 250px;
  }
}




