/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #2e2e2e;
  }
  
  /* Logo */
  .logo img {
    height: 100px;
    width: auto;
    margin-right: 40px;
  }
  
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  background-color: #f5f5f5;
}

/* Logo */
.logo img {
  height: 100px;
  width: auto;
  margin-right: 40px;
}

/* Navegación */
nav {
  font-family: 'Dosis', sans-serif;
  width: 100%;
  margin-left: 20%;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  color: #2e6989;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  line-height: normal;
}

nav a:hover {
  border-bottom: 2px solid #552f6d;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10% 0 10%;
  background-color: #f5f5f5;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  min-width: 250px;
}

.hero-image img {
  max-width: 350px;
  height: auto;
}

.hero-text {
  flex: 2;
  padding-left: 100px;
  min-width: 300px;
}

.hero-text h1 {
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  color: #413550;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.2;
}

.hero-text p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.btn-primary {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  background-color: #552f6d;
  color: white;
  padding: 12px 10px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

/* ✅ Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    text-align: center;
  }

  .logo {
    margin-bottom: 20px;
  }

  nav {
    margin-left: 0;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    font-size: 1.2rem;
  }

  .hero {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .btn-primary {
    margin-top: 20px;
  }
}

  /* Sección ¿Qué hago? */
  .que-hago {
    padding: 20px 10%;
    background-color: #413550;
    color: white;
    text-align: center;
  }
  
  .que-hago h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .que-hago p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
  }
  
  .btn-secondary {
    margin-top: 40px;
    background-color: #e6e6f0;
    color: #2e2e3e;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .btn-secondary {
      margin-top: 20px;
    }
  }
  
  /* Pilares */
  .pilares {
    padding: 60px 10%;
    text-align: center;
  }
  
  .pilares h2 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #413550;
    margin-bottom: 40px;
  }
  
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .pilar {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    text-align: left;
  }
  
  .pilar img {
    max-width: 150px;
    height: auto;
    flex-shrink: 0;
  }
  
  .pilar-texto {
    display: flex;
    flex-direction: column; /* 🔹 Asegura que h3 esté arriba y p debajo */
  }

  .pilar-texto h3 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #413550;
    margin-bottom: 5px;
  }
  
  .pilar-texto p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
  }
  
  .pilar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pilar-btn .btn-primary {
    background-color: #552f6d;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .pilares-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Sobre mí */
  .sobre-mi {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 20px 5%;
    background-color: #fff;
    flex-wrap: wrap; /* para responsividad */
  }
  
  .sobre-mi img {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
  }
  
  .sobre-mi-texto {
    flex: 1;
    min-width: 300px;
  }
  
  .sobre-mi-texto h3 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #413550;
    margin-bottom: 20px;
  }
  
  .sobre-mi-texto p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .sobre-mi-datos {
    display: flex;
    gap: 60px;
    margin: 30px auto; /* 🔹 esto centra el contenedor */
    justify-content: center; /* 🔹 centra los datos internamente */
    max-width: 400px; /* opcional para que no se estire demasiado */
  }
  
  
  .dato {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .numero {
    font-family: 'Dosis', sans-serif;
    color: #2e6989;
    font-size: 50px;
    font-weight: 700;
  }
  
  .etiqueta {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    color: #413550;
    line-height: 1.3;
  }
  
  .sobre-mi .btn-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: #413550;
    color: white;
    padding: 14px 10px;
    border-radius: 25px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    margin: 20px auto 0 auto; 
    text-align: center; /* Asegura que el botón esté centrado */
  }
  
  @media (max-width: 768px) {
    .sobre-mi {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .sobre-mi-datos {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
  
    .dato {
      justify-content: center;
    }
  }
  


  /* Testimonios */
  .testimonios {
    background-color: #413550;
    color: white;
    text-align: center;
    padding: 60px 10%;
    position: relative;
  }
  
  .testimonios h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .testimonio-carousel {
    max-width: 900px;
    margin: auto;
  }
  
  .testimonio-texto {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify; /* ✅ Justifica el texto */
  }
  
  .testimonio-autor {
    margin-top: 10px;
  }
  
  .testimonio-autor .nombre {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
  }
  
  .testimonio-autor .cargo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin: 5px 0 0 0;
    color: #e0ddea;
  }
  
  /* Flechas de navegación */
  .testimonio-controles {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
  }
  
  .testimonio-controles button {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
  }
  
    
  /* Recursos */
  .recursos {
    padding: 20px 10%;
    background-color: #fff;
    text-align: center;
  }
  
  .recursos h2 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: #413550;
    margin-bottom: 20px;
  }
  
  .recursos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .recurso {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .recurso img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .recurso h3 {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #413550;
    margin: 0;
  }
  
  .recurso p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
  }
  
  .btn-descargar {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background-color: #413550;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }
  
  /* Suscripción */
  .suscripcion {
    background-color: #f4ecf4;
    padding: 60px 10%;
  }
  
  .suscripcion-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .suscripcion-icono img {
    max-width: 200px;
    height: auto;
  }
  
  .suscripcion-formulario {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    width: 100%;
  }
  
  .suscripcion-formulario input[type="text"],
  .suscripcion-formulario input[type="email"] {
    padding: 14px;
    font-size: 1rem;
    font-family: 'Dosis', sans-serif;
    border: 2px solid #413550;
    border-radius: 0;
  }
  
  .suscripcion-check {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: #413550;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }
  
  .suscripcion-formulario button {
    background-color: #413550;
    color: white;
    font-family: 'Dosis', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
  }
  
  
  /* Footer */
  .footer {
    background-color: #413550;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .footer-columna {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  /* Navegación */
  .footer-enlaces {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-enlaces li {
    margin: 10px 0;
  }
  
  .footer-enlaces a {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  /* Logo */
  .footer-columna.logo img {
    max-height: 80px;
    width: auto;
  }
  
  /* Contacto */
  .contacto .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
  }
  
  .contacto img {
    width: 24px;
    height: 24px;
  }
  
  .redes {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .redes a img {
    width: 35px;
    height: 35px;
  }
  
  .footer-derechos {
    background-color: #413550;
    color: #e0ddea;
    text-align: center;
    padding: 20px 10%;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid #5c4c6a;
  }
  
  .footer-derechos a {
    color: #e0ddea;
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }
  
    .footer-columna {
      align-items: center;
    }
  }
  
  /* Sección de introducción de servicios */

  .intro-servicios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 60px;
    flex-wrap: wrap;
    background-color: #fff;
  }
  
  .intro-texto {
    flex: 1;
    min-width: 300px;
  }
  
  .intro-texto h1 {
    font-family: 'Dosis', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #413550;
    margin-bottom: 30px;
  }
  
  .intro-texto p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: #2e2e2e;
    margin-bottom: 30px;
  }
  
  .intro-texto .btn-primary {
    background-color: #413550;
    color: white;
    padding: 14px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
  }
  
  .intro-imagen img {
    max-width: 350px;
    width: 100%;
    border-radius: 50%;
  }
  
  .bloque-emocional {
    background-color: #413550;
    color: white;
    padding: 20px 10% 20px 10%;
    text-align: center;
  }
  
  .bloque-emocional h2 {
    font-family: 'Dosis', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .bloque-emocional p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: auto;
    color: #f2eef9;
  }
  
  @media (max-width: 768px) {
    .bloque-emocional h2 {
      font-size: 2rem;
    }
  
    .bloque-emocional p {
      font-size: 1.2rem;
    }
  }
  
  .mi-historia {
    display: flex;
    align-items: flex-end; /* 👈 asegura que la imagen baje al fondo */
    justify-content: space-between;
    padding: 20px 10% 0 10%; /* 👈 sin padding inferior */
    margin-bottom: 0;
    gap: 60px;
    flex-wrap: wrap;
    background-color: #fff;
  }
  
  .historia-texto {
    flex: 1;
    min-width: 300px;
  }
  
  .historia-texto h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #413550;
    margin-bottom: 20px;
  }
  
  .historia-texto p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: #413550;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .btn-accion {
    display: inline-block;
    background-color: #413550;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 0px;
    margin-bottom: 10px; /* 👈 espacio entre el botón y la imagen */
  }
  
  .historia-imagen {
    flex: 1;
    text-align: center;
  }
  
  .historia-imagen img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .mi-historia {
      flex-direction: column;
      text-align: center;
    }
  
    .historia-texto h2 {
      font-size: 2rem;
    }
  
    .historia-texto p {
      font-size: 1.1rem;
    }
  
    .btn-accion {
      padding: 12px 20px;
      font-size: 1rem;
    }
  }
  
  /* Diferenciales */

  .diferenciales {
    background-color: #2e6989;
    color: white;
    text-align: center;
    padding: 20px 10% 20px 10%;
  }
  
  .diferenciales h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: white;
  }
  
  .lista-diferenciales {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .lista-diferenciales li {
    display: grid;
    grid-template-columns: 50px 1fr; /* Fija columna para el ícono */
    align-items: center; /* Alinea el texto a la izquierda */
    text-align: left; /* Asegura que el texto esté alineado a la izquierda */
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: white;
    gap: 10px;
  }
  
  
  .lista-diferenciales img {
    width: 40px;
    height: 40px;
  }
  
  .btn-diferencial {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    background-color: #f2eef9;
    color: #413550;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .btn-diferencial:hover {
    background-color: #e0ddea;
  }
 
  

  /* bloque Cita */
  .bloque-cita {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10% 0px 10%;
    gap: 60px;
    background-color: #fff;
    flex-wrap: wrap;
  }
  
  .cita-texto {
    flex: 1;
    min-width: 300px;
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #413550;
    text-align: left;
  }
  
  .cita-imagen {
    flex: 1;
    text-align: center;
  }
  
  .cita-imagen img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  @media (max-width: 768px) {
    .bloque-cita {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .cita-texto {
      font-size: 1.5rem;
      text-align: center;
    }
  }
  

  /* Responsive */
  @media (max-width: 768px) {
    .intro-servicios {
      flex-direction: column;
      text-align: center;
    }
  
    .intro-texto h1 {
      font-size: 2.2rem;
    }
  
    .intro-texto p {
      font-size: 1.2rem;
    }
  
    .intro-texto .btn-primary {
      width: 100%;
    }
  }
  
  .bloque-cafe {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10% 50px 10%;
    gap: 60px;
    flex-wrap: wrap;
    background-color: #fff;
  }
  
  .cafe-imagen {
    flex: 1;
    text-align: center;
  }
  
  .cafe-imagen img {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
  
  .cafe-contenido {
    flex: 2;
    min-width: 300px;
    font-family: 'Quicksand', sans-serif;
    color: #413550;
  }
  
  .cafe-contenido h2 {
    font-family: 'Dosis', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .cafe-contenido p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .btn-asesoria {
    background-color: #413550;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
  }
  
  @media (max-width: 768px) {
    .bloque-cafe {
      flex-direction: column;
      text-align: center;
    }
  
    .cafe-contenido h2 {
      font-size: 2rem;
    }
  
    .cafe-contenido p {
      font-size: 1.2rem;
    }
  
    .btn-asesoria {
      width: 100%;
    }
  }

  *//* Bloque de SERVICIOS REAL!!!*/

 /* Contenedor general */
.pilares {
  padding: 40px 10%;
  background: #ffffff;
}

.pilares h2 {
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  color: #413550;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Contenedor de cada pilar */
.pilar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* Imagen */
.pilar-imagen img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Texto */
.pilar-texto {
  flex: 1;
  display: flex;
  flex-direction: column; /* Asegura que el título esté arriba y el párrafo debajo */
}

.pilar-texto h3 {
  font-family: 'Dosis', sans-serif;
  color: #413550;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center; /* Asegura que el título esté alineado a la izquierda */
}

.pilar-texto p {
  font-family: 'Quicksand', sans-serif;
  color: #413550;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.pilar-texto p strong {
  font-weight: 700;
}

/* Botón */
.pilar-texto .btn-primary {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #2e6989;
  color: white;
  padding: 14px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  max-width: max-content;
}

/* Responsive */
@media (max-width: 768px) {
  .pilar-item {
    flex-direction: column;
    text-align: center;
  }

  .pilar-imagen img {
    max-width: 100%;
  }

  .pilar-texto .btn-primary {
    width: 100%;
  }
}
 
.bloque-cierre-servicios {
  text-align: center;
  padding: 60px 10%;
  background-color: #ffffff;
}

.bloque-cierre-texto p {
  font-family: 'Dosis', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #413550;
  background-color: #413550;
  color: #ffffff;
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
}

.btn-cierre-whatsapp {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #2e6989;
  color: white;
  padding: 14px 30px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .bloque-cierre-texto p {
      font-size: 1.5rem;
  }

  .btn-cierre-whatsapp {
      width: 100%;
      max-width: 300px;
  }
}


.recursos-header {
  background-color: #413550;
  color: white;
  padding: 60px 10% 40px 10%;
  text-align: center;
}

.recursos-header-texto h1 {
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.recursos-header-texto p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.flecha-abajo img {
  width: 40px;
  height: auto;
  animation: bounce 1.5s infinite;
}

/* Animación sutil */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .recursos-header-texto h1 {
    font-size: 1.8rem;
  }

  .recursos-header-texto p {
    font-size: 1rem;
  }

  .flecha-abajo img {
    width: 30px;
  }
}

/* Recursos Contexto */

.recursos-contexto {
  background-color: #ffffff;
  padding: 60px 10% 40px 10%;
  text-align: center;
}

.recursos-contexto-texto {
  max-width: 800px;
  margin: auto;
}

.recursos-contexto .destacado {
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  background-color: #413550;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.recursos-contexto .subtexto {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  color: #413550;
  margin-bottom: 30px;
}

.btn-cafecito {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #2e6989;
  color: white;
  padding: 14px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cafecito img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .recursos-contexto .destacado {
    font-size: 1.5rem;
  }

  .recursos-contexto .subtexto {
    font-size: 1rem;
  }

  .btn-cafecito {
    width: 100%;
    justify-content: center;
  }
}

/* Recursos Descargables - HERRAMIENTAS - */

.recurso-descargable {
  padding: 60px 10%;
  text-align: center;
}

.recurso-descargable h2 {
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #413550;
  margin-bottom: 40px;
}

.recurso-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.recurso-imagen img {
  max-width: 280px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.recurso-texto {
  max-width: 500px;
  text-align: left;
}

.recurso-texto h3 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #413550;
  margin-bottom: 10px;
}

.recurso-texto p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #413550;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-descarga {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #413550;
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .recurso-item {
    flex-direction: column;
    text-align: center;
  }

  .recurso-texto {
    text-align: center;
  }
}

/*Auditor digital */

.recurso-auditor {
  background-color: #413550;
  padding: 60px 10%;
  color: white;
}

.auditor-contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.auditor-imagen img {
  max-width: 250px;
  width: 100%;
  border-radius: 20px;
}

.auditor-texto {
  max-width: 600px;
}

.auditor-texto h3 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.auditor-texto p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: white;
}

.btn-blanco {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #ffffff;
  color: #413550;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .auditor-contenido {
    flex-direction: column;
    text-align: center;
  }

  .auditor-texto {
    text-align: center;
  }

  .auditor-imagen img {
    margin-bottom: 20px;
  }
}


/* Recursos Cierre */

.recursos-cierre {
  background-color: #ffffff;
  padding: 60px 10%;
  text-align: center;
  border-top: 6px solid #413550;
  border-bottom: 6px solid #413550;
}

.recursos-cierre-texto {
  max-width: 800px;
  margin: auto;
}

.recursos-cierre .frase-final {
  background-color: #413550;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.recursos-cierre .subtexto {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #413550;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cafecito {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  background-color: #2e6989;
  color: white;
  padding: 14px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cafecito img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .recursos-cierre .frase-final {
    font-size: 1.5rem;
  }

  .recursos-cierre .subtexto {
    font-size: 1rem;
  }

  .btn-cafecito {
    width: 100%;
    justify-content: center;
  }
}

/* Contacto Intro */
.contacto-intro {
  background-color: #413550;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.contacto-intro-texto h2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.contacto-intro .frase-destacada {
  background-color: #ffffff;
  color: #413550;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .contacto-intro-texto h2 {
    font-size: 2rem;
  }

  .contacto-intro .frase-destacada {
    font-size: 1.1rem;
    padding: 8px 16px;
  }
}

/* Contacto Formulario */


.contacto-contenedor {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.info-contacto {
  flex: 1;
  min-width: 300px;
  color: #3d2e4c;
}

.info-contacto h2 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 10px;
}

.item-contacto {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.item-contacto i {
  font-size: 18px;
  color: #3d2e4c;
  margin-top: 4px;
}

.item-contacto strong {
  font-weight: 600;
  color: #3d2e4c;
}

.redes-sociales {
  display: flex;
  gap: 15px;
  margin: 10px 0 20px;
}

.redes-sociales a {
  font-size: 24px;
  color: #3d2e4c;
  transition: 0.3s ease;
}

.redes-sociales a:hover {
  color: #55849d;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #265c6d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-whatsapp i {
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background-color: #1f4a5b;
}

.formulario-contacto {
  flex: 1;
  min-width: 300px;
}


/* ----------- Footer actualizado ----------- */
.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background-color: #3e3050;
  color: white;
}

.footer-columna {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
}

.footer-columna ul {
  list-style: none;
  padding: 0;
}

.footer-columna ul li {
  margin: 0.5rem 0;
  font-weight: bold;
}

.footer-columna ul li a {
  color: white;
  text-decoration: none;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 200px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  background-color: #3e3050;
  color: #ffffff;
  padding: 1rem;
  border-top: 1px solid #5e4a70;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-columna {
    margin-bottom: 2rem;
  }
}

.formulario-brevo {
  background-color: #fff;
  padding: 60px 20px;
}

.formulario-brevo-contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.bloque-contacto {
  flex: 1;
  min-width: 300px;
  color: #3d2e4c;
  font-size: 16px;
}

.bloque-contacto p {
  margin-bottom: 16px;
}

.bloque-contacto a {
  color: #3d2e4c;
  text-decoration: underline;
}

.redes a {
  margin-right: 12px;
}

.redes img {
  width: 28px;
  height: 28px;
}

.btn-ws {
  display: inline-block;
  margin-top: 20px;
  background-color: #2c5b6c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.bloque-formulario {
  flex: 1;
  min-width: 300px;
}
