.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;
  }
}


/* TARJETAS N1 */
/* ============================
   SECCIÓN HERRAMIENTAS
============================ */

section.py-5.bg-white {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Badge superior */
.badge.bg-success {
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 20px;
    padding: 8px 18px;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
}

/* Títulos principales */
section h2 {
    font-weight: 700;
    font-size: 36px;
    color: #212529;
}

section h4 {
    font-weight: 600;
}

section h5 {
    font-weight: 600;
}

/* Tarjetas claras */
.bg-light.rounded.shadow-sm {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.bg-light.rounded.shadow-sm:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Caja verde destacada */
.bg-success.text-white.rounded.shadow {
    background: linear-gradient(135deg, #198754, #157347);
    transition: all 0.3s ease;
}

.bg-success.text-white.rounded.shadow:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(25, 135, 84, 0.4);
}

/* Lista con mejor espaciado */
ul li {
    margin-bottom: 8px;
}

/* Animación suave de entrada */
section .row {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

section .row:nth-child(2) {
    animation-delay: 0.2s;
}

section .row:nth-child(3) {
    animation-delay: 0.4s;
}

section .row:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TARJETAS N2 */
/* =====================================
   SECCIÓN CREAR CAMPAÑAS
   (Sin modificar HTML)
===================================== */

/* Fondo con degradado sutil más moderno */
section.py-5.bg-white {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 60%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

/* Línea decorativa superior elegante */
section.py-5.bg-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #198754, #20c997);
}

/* Título principal más fuerte */
section.py-5 h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1e1e1e;
}

/* Subtítulos */
section.py-5 h4 {
    font-weight: 600;
    font-size: 22px;
}

/* Badge mejorado */
.badge.bg-success {
    font-size: 14px;
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 6px 15px rgba(25, 135, 84, 0.25);
}

/* Tarjetas blancas más modernas */
.bg-light.rounded.shadow-sm {
    background: white !important;
    border-radius: 18px !important;
    border: 1px solid #e9ecef;
    padding: 30px !important;
    transition: all 0.35s ease;
}

/* Hover premium */
.bg-light.rounded.shadow-sm:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Efecto visual en títulos de tarjetas */
.bg-light.rounded.shadow-sm h5 {
    position: relative;
    padding-bottom: 10px;
}

.bg-light.rounded.shadow-sm h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #198754;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

/* Caja verde final más impactante */
.bg-success.text-white.rounded.shadow {
    background: linear-gradient(135deg, #198754, #157347);
    border-radius: 25px !important;
    padding: 40px !important;
    box-shadow: 0 20px 50px rgba(25, 135, 84, 0.4);
    transition: 0.3s ease;
}

.bg-success.text-white.rounded.shadow:hover {
    transform: scale(1.02);
}

/* Lista más limpia */
section.py-5 ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Animación elegante al cargar */
section.py-5 .row {
    opacity: 0;
    animation: fadeUpSoft 0.8s ease forwards;
}

section.py-5 .row:nth-of-type(2) {
    animation-delay: 0.2s;
}

section.py-5 .row:nth-of-type(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* TARJETAS N3 */

/* Fondo con sensación más tecnológica */
section.py-5.bg-white:nth-of-type(3) {
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 50%, #e9f7ef 100%);
    position: relative;
    overflow: hidden;
}

/* Efecto brillo sutil decorativo */
section.py-5.bg-white:nth-of-type(3)::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25,135,84,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* Título principal más impactante */
section.py-5:nth-of-type(3) h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #198754, #20c997);
    -webkit-text-fill-color: transparent;
}

/* Subtítulos */
section.py-5:nth-of-type(3) h4 {
    font-weight: 600;
    font-size: 23px;
}

/* Tarjetas con efecto glass sutil */
section.py-5:nth-of-type(3) .bg-light.rounded.shadow-sm {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(6px);
    border-radius: 20px !important;
    border: 1px solid rgba(25,135,84,0.15);
    transition: all 0.35s ease;
}

/* Hover más dinámico */
section.py-5:nth-of-type(3) .bg-light.rounded.shadow-sm:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(25, 135, 84, 0.15) !important;
}

/* Línea inferior decorativa en títulos */
section.py-5:nth-of-type(3) .bg-light.rounded.shadow-sm h5::after {
    content: "";
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #198754, #20c997);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* Caja verde final más intensa */
section.py-5:nth-of-type(3) .bg-success.text-white.rounded.shadow {
    background: linear-gradient(135deg, #157347, #198754, #20c997);
    border-radius: 28px !important;
    padding: 45px !important;
    box-shadow: 0 25px 60px rgba(25, 135, 84, 0.45);
    transition: 0.3s ease;
}

section.py-5:nth-of-type(3) .bg-success.text-white.rounded.shadow:hover {
    transform: scale(1.03);
}

/* Animación más fluida */
section.py-5:nth-of-type(3) .row {
    opacity: 0;
    animation: fadeUpIA 0.9s ease forwards;
}

section.py-5:nth-of-type(3) .row:nth-of-type(2) {
    animation-delay: 0.2s;
}

section.py-5:nth-of-type(3) .row:nth-of-type(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUpIA {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================================
   SECCIÓN PROGRAMACIÓN REDES SOCIALES
   (Más limpia pero con estructura real)
================================================= */

section.bg-white {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9f8 100%);
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Línea vertical decorativa lateral */
section.bg-white .col-lg-9 {
    position: relative;
    padding-left: 40px;
}

section.bg-white .col-lg-9::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, #198754, #20c997);
    border-radius: 2px;
}

/* Título */
section.bg-white h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Texto */
section.bg-white .lead {
    font-size: 18px;
    line-height: 1.9;
    color: #5f6b6d;
}

/* CTA elegante */
section.bg-white a {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #198754;
    transition: all 0.3s ease;
}

section.bg-white a:hover {
    transform: translateX(6px);
}



/* =================================================
   SECCIÓN PROFUNDIZACIÓN MARKETING
   (Bloque premium con sensación estratégica)
================================================= */

#marketing-profundo {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    background: linear-gradient(180deg, #eef4f1 0%, #ffffff 100%);
}

/* Panel central elegante */
#marketing-profundo .col-lg-9 {
    background: #ffffff;
    padding: 70px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    position: relative;
}

/* Barra superior decorativa */
#marketing-profundo .col-lg-9::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #198754, #20c997);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

/* Eyebrow */
#marketing-profundo .text-uppercase {
    letter-spacing: 2px;
    font-size: 12px;
    color: #198754 !important;
}

/* Título */
#marketing-profundo h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1d1d1d;
    margin-bottom: 30px;
}

/* Subtítulos internos */
#marketing-profundo h4 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 15px;
    color: #1f1f1f;
}

/* Separador sutil entre bloques */
#marketing-profundo h4:not(:first-of-type) {
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

/* Texto */
#marketing-profundo p {
    font-size: 17px;
    line-height: 1.9;
    color: #4f5b5c;
}

/* CTA final */
#marketing-profundo a {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 22px;
    border: 2px solid #198754;
    border-radius: 40px;
    font-weight: 600;
    color: #198754;
    transition: all 0.3s ease;
}

#marketing-profundo a:hover {
    background: #198754;
    color: #ffffff;
    transform: translateY(-3px);
}