.hero-section {
    background-color: #ffffff;
}
/* LETRA IMG */

.hero-title {
    color: #59ab6e;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #3d8b54; /* verde más oscuro para énfasis */
}

/* Línea decorativa */
.hero-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: #59ab6e;
    margin-top: 14px;
    border-radius: 2px;
}

.hero-section p {
    color: #555;
    font-size: 1.05rem;
    max-width: 520px;
}
.hero-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 34px;
    background-color: #59ab6e;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #3d8b54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 171, 110, 0.3);
}
/*TARJETAS*/
/* Fondo y padding general de la sección */
.features-section {
  background-color: #e6f2e6;  /* verde muy suave */
  padding: 80px 20px 100px;   /* espacio arriba y abajo generoso */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título principal */
.features-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #59ab6e;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Línea decorativa bajo el título */
.features-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #59ab6e;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Contenedor flex para las columnas */
.features-row {
  display: flex;
  justify-content: center;
  gap: 60px;   /* espacio horizontal entre columnas */
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cada columna */
.feature-item {
  flex: 1 1 300px;  /* crece, se reduce, base 300px */
  max-width: 320px;
  text-align: center;
}

/* Imagen de cada columna */
.feature-item img {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
  filter: grayscale(0.4);  /* un toque suave, opcional */
}

/* Título dentro de la columna */
.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #59ab6e;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Texto descriptivo */
.feature-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #3a3a3a;
  margin-bottom: 25px;
}

/* Link "Más información" */
.feature-item a.more-info {
  font-weight: 700;
  font-size: 0.95rem;
  color: #3a3a3a;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.feature-item a.more-info:hover {
  color: #59ab6e;
}

/* Responsive: en pantallas pequeñas, columnas apiladas */
@media (max-width: 768px) {
  .features-row {
    flex-direction: column;
    gap: 40px;
    max-width: 90%;
  }
  
  .feature-item {
    max-width: 100%;
  }
  
  .features-title {
    font-size: 2.2rem;
    max-width: 100%;
    padding: 0 10px;
  }
}
/* INFO */
/* Sección */
.info-block {
  width: 100%;
  padding: 100px 8%;
  background-color: #ffffff;
}

/* Contenedor */
.info-wrapper {
  max-width: 900px;
  margin: auto;
}

/* Contenido */
.info-content {
  position: relative;
}

/* Etiqueta superior */
.info-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4CAF50;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Título */
.info-content h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 30px;
}

/* Texto */
.info-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  max-width: 780px;
  margin-bottom: 30px;
}

/* Enlace */
.info-link {
  font-size: 1rem;
  font-weight: 600;
  color: #4CAF50;
  text-decoration: none;
  position: relative;
}

.info-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #4CAF50;
  transition: width 0.3s ease;
}

.info-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .info-block {
    padding: 70px 6%;
  }

  .info-content h2 {
    font-size: 1.9rem;
  }
}
 /* INFO 2*/

 .tips-section {
  width: 100%;
  padding: 100px 8%;
  background-color: #f8faf9;
}

.tips-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Texto */
.tips-text {
  flex: 1;
}

.tips-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tips-text h2 {
  font-size: 2.3rem;
  line-height: 1.25;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 28px;
}

.tips-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Botón */
.tips-btn {
  display: inline-block;
  padding: 13px 34px;
  background-color: #4CAF50;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tips-btn:hover {
  background-color: #43a047;
  transform: translateY(-2px);
}

/* Visual */
.tips-visual {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 20px;
  justify-content: center;
}

.visual-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.visual-card span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}

.visual-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.visual-card:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 900px) {
  .tips-container {
    flex-direction: column;
    text-align: center;
  }

  .tips-text p {
    margin: 0 auto 35px;
  }

  .tips-visual {
    grid-template-columns: repeat(3, 140px);
  }
}
/* PREGUNTAS FRECUENTES */

.faq-section {
  padding: 100px 8%;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.faq-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #4CAF50;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-icon {
  width: 36px;
  height: 36px;
  background: #4CAF50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* RESPUESTA */
.faq-answer {
  display: none;
  margin-top: 15px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  max-width: 650px;
}

/* ACTIVO */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer ul {
  margin: 15px 0 20px 20px;
  padding: 0;
}

.faq-answer ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}


/* ===== SECCIÓN PAGO ===== */
.payment-section {
  background-color: #f8faf9;
  padding: 100px 8%;
}

.payment-wrapper {
  max-width: 900px;
  margin: auto;
}

.payment-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #59ab6e;
  text-align: center;
  margin-bottom: 20px;
}

.payment-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #59ab6e;
  margin: 18px auto 0;
  border-radius: 2px;
}

.payment-text {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Tarjeta del formulario */
.payment-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Labels */
.payment-card label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}

/* Inputs */
.payment-card input,
.payment-card select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  margin-bottom: 22px;
  transition: border 0.3s ease;
}

.payment-card input:focus,
.payment-card select:focus {
  outline: none;
  border-color: #59ab6e;
}

/* Separador */
.payment-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 35px 0;
}

/* Botón pagar */
.payment-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background-color: #59ab6e;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-btn:hover {
  background-color: #3d8b54;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(89, 171, 110, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .payment-card {
    padding: 35px 25px;
  }

  .payment-title {
    font-size: 2rem;
  }
}

