@charset "UTF-8";
/* poppins-100 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: url("/assets/fonts/poppins/poppins-v23-latin-100.woff2") format("woff2");
}
/* poppins-100italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;
  src: url("/assets/fonts/poppins/poppins-v23-latin-100italic.woff2") format("woff2");
}
/* poppins-200 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/poppins/poppins-v23-latin-200.woff2") format("woff2");
}
/* poppins-200italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 200;
  src: url("/assets/fonts/poppins/poppins-v23-latin-200italic.woff2") format("woff2");
}
/* poppins-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/poppins/poppins-v23-latin-300.woff2") format("woff2");
}
/* poppins-300italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/poppins/poppins-v23-latin-300italic.woff2") format("woff2");
}
/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/poppins/poppins-v23-latin-regular.woff2") format("woff2");
}
/* poppins-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/poppins/poppins-v23-latin-italic.woff2") format("woff2");
}
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/poppins/poppins-v23-latin-500.woff2") format("woff2");
}
/* poppins-500italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: url("/assets/fonts/poppins/poppins-v23-latin-500italic.woff2") format("woff2");
}
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/poppins/poppins-v23-latin-600.woff2") format("woff2");
}
/* poppins-600italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  src: url("/assets/fonts/poppins/poppins-v23-latin-600italic.woff2") format("woff2");
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/poppins/poppins-v23-latin-700.woff2") format("woff2");
}
/* poppins-700italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: url("/assets/fonts/poppins/poppins-v23-latin-700italic.woff2") format("woff2");
}
/* ==========================================================================
    Variables Globales, emoj 1️⃣2️⃣3️⃣4️⃣5️⃣6️⃣✅☑️⊚ ※
   ========================================================================== */
/* Fuentes (importadas en _layouts/default.html) */
/* Gris semi-oscuro */
/* ==========================================================================
    Estilos Generales
   ========================================================================== */
body {
  font-family: "Poppins", sans-serif;
  color: #7f6000;
  background-color: #fffaec;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.4;
}

/* =========================================================
   HEADER PRINCIPAL
   ========================================================= */
.site-header {
  /*width: 100%;*/
  background-color: #fffaec;
  padding: 0px 0px;
  /*box-sizing: border-box;*/
}

/* =========================================================
   HEADER-TOP (Logo + boton idioma en una sola línea)
   ========================================================= */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- LOGO --- */
.logo img {
  height: 140px;
  width: auto;
  display: block;
  margin-left: 4rem;
}

/* --- BOTÓN DE IDIOMA --- */
.lang-switch {
  font-size: 15px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-right: 10rem;
  background-color: #d9ead3;
  border: 0.5px solid #83660e;
  border-radius: 20px;
  padding: 5px;
}

.lang-switch a {
  color: #333;
  text-decoration: none;
  font-weight: 200;
  text-transform: capitalize;
}

/* Estado activo del idioma actual */
.lang-switch .lang-active {
  font-weight: 300;
  /*border-bottom: 2px solid $color-text;*/
  padding-bottom: 2px;
}

/* =========================================================
   MENÚ DE NAVEGACIÓN
   ========================================================= */
.main-nav {
  margin-top: 0px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}

.main-nav a {
  color: #7f6000;
  text-decoration: none;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 21px;
}

.main-nav a:hover {
  font-weight: 500;
}

.header-divider {
  height: 4px;
  width: auto;
  background-color: rgb(181, 230, 29);
  margin-top: 20px;
}

/* Ocultar menu hamburguesa para pantallas grandes */
.menu-toggle {
  display: none;
} /* Ocultamos el botón hamburguesa */
/* ==========================================================================
   4. Estilos de la Página de Inicio (Index)
   ========================================================================== */
/* Estilos comunes de sección */
.hero-section {
  background-color: #fffaec;
  padding: 20px 20px;
}

/* Contenedor del título y sub titulo*/
.hero-title-container {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 0px;
  padding-bottom: 0px;
} /* Espacio entre título y el siguiente bloque */
.hero-title h1 {
  font-family: "Poppins", sans-serif;
  color: #7f6000;
  font-size: 2.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.hero-title p {
  font-family: "Poppins", sans-serif;
  background-color: #fffaec;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
}

/* ============    OUR COMMITMENT SECTION   ==================== */
.commitment-title h2 {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 0px;
  padding: 0rem 0rem;
  background-color: #fffaec;
  text-align: center;
}

.commitment-section-content {
  padding: 5rem;
  background-color: #fffaec;
}

.commitment-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.commitment-content-container .commitment-text {
  flex: 1;
  border: 1px solid #7f6000;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.5;
}
.commitment-content-container .texto-negrita {
  font-weight: 600;
}
.commitment-content-container .commitment-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.commitment-content-container .commitment-image img {
  max-width: auto;
  height: 520px;
  border-radius: 6px;
}

/* ==================   ADVANTAGES SECTION      ================= */
.advantages-section {
  padding: 20px 0;
  text-align: center;
  background-color: #fffaec;
}

.advantages-title h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #7f6000;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  margin-left: 5rem;
  margin-right: 5rem;
}

.advantage-item {
  border: 1px solid #7f6000;
  padding: 10px;
}

.advantage-item h3 {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #7f6000;
  margin-bottom: 10px;
  text-align: center;
}

.advantage-item P {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: left;
  font-style: normal;
  line-height: 1.4;
  color: #7f6000;
  margin-left: 2rem;
  margin-right: 1.5rem;
  margin-bottom: 10px;
}

/* ==============     CALL TO ACTION (CTA) SECTION      =================== */
.cta-section {
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  align-items: center;
}
.cta-section .cta-image img {
  width: 50%;
  height: auto; /* Le damos una altura fija, ajústala a tu gusto */
  object-fit: cover; /* ¡Esta es la magia! */
  display: block;
  margin-left: 20rem;
}

.cta-section-title {
  padding: 0rem 0rem;
  background-color: #fffaec;
}

/* Contenedor del título*/
.cta-title-container {
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: 1rem;
  margin-bottom: 0px;
  padding-bottom: 20px;
} /* Espacio entre título h2 y el siguiente bloque */
.cta-title h2 {
  font-weight: 400;
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color: #7f6000;
  text-align: center;
  margin-bottom: 0px;
}

.cta-section-content {
  padding: 0;
  margin-left: 5rem;
  margin-right: 4rem;
  justify-content: space-between;
  background-color: #fffaec;
}

.cta-content-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-image2 img {
  max-width: auto;
  height: 330px;
  object-fit: cover;
  display: block;
  margin: o;
  flex-shrink: 0;
}

.cta-text {
  border: 1px solid #7f6000;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: justify;
  border-radius: 20px;
  flex: 1;
  margin: 0;
  /* o 700 */
}
.cta-text p {
  margin: 0 0 1.9rem 0;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.4;
}
.cta-text p:last-child {
  margin-bottom: 0;
}
.cta-text .texto-negrita {
  font-weight: 600;
}

/* ==============     CTA-FINAL- SECTION      =================== */
.cta-final {
  margin-left: 3rem;
}
.cta-final ul {
  list-style: none;
  padding: 0;
  border: 2px solid #7f6000;
  margin-left: 8rem;
  border-radius: 20px;
  margin-top: 1rem;
  margin-right: 30rem;
}
.cta-final ul li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  position: relative;
}

.cta-final h3 {
  font-weight: 400;
  font-size: 1.8rem;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: #7f6000;
  text-align: left;
  margin-left: 15rem;
  margin-bottom: 0px;
}

.cta-final p {
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: justify;
  font-style: italic;
  line-height: 1.4;
  color: #7f6000;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 60px;
  margin-bottom: 20px;
}
.cta-final p .texto-negrita {
  font-weight: 600;
}

.section-divider {
  height: 4px;
  width: auto;
  background-color: rgb(181, 230, 29);
  margin-top: 20px;
}

/* =================     Estilos del Footer   =============================== */
.footer-primary {
  background-color: #d9ead2;
  color: rgba(73, 73, 73, 0.938);
  font-weight: 400;
  padding: 1px 0;
  text-align: center;
  font-style: normal;
  font-size: 1.1rem;
}

.footer-wrapper {
  background-color: #333;
  width: 100%;
}

/* Variables para ajustes manuales */
:root {
  --logo-margin-left: 30px;
  --logo-margin-top: 20px; /* Ajusta posición horizontal del logo */
  --contact-margin-left: 0px;
  --contact-margin-top: 0px; /* Ajusta posición horizontal del bloque Contact */
}

/* Márgenes globales */
.secondary-footer {
  margin-left: 1px;
  margin-right: 1px;
}

/* --- Footer --- */
.secondary-footer {
  background-color: #333;
  color: #fff;
  display: grid;
  grid-template-rows: auto auto auto; /* 3 filas: Logo, Contact, Redes */
  gap: 20px;
  padding: 40px 30px;
  box-sizing: border-box;
  width: 100%;
  /*margin: 0 auto; /* Centra el footer en pantallas grandes */
}

/* Logo */
.secondary-footer-logo {
  margin-left: var(--logo-margin-left);
  margin-top: var(--logo-margin-top);
}

.secondary-footer-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Bloque Contact */
.footer-contact {
  margin-left: var(--contact-margin-left);
  margin-top: var(--cotact-margin-top);
  font-size: 1.2rem;
  line-height: 1.3;
}

/* Redes sociales */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* Texto "Follow us" */
.follow-label {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Estilo de enlaces */
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-social a:hover,
.footer-social a:focus {
  text-decoration: underline;
}

/* Íconos de redes */
.instagram i {
  color: #E1306C; /* Instagram */
}

.twitter i {
  color: #fff; /* Blanco para fondo negro */
}

.legal-links {
  margin-left: 6rem;
  margin-right: 6rem;
  text-align: center;
}
.legal-links p {
  font-weight: 200;
  font-size: 0.9rem;
}
.legal-links a {
  font-weight: 400;
  font-size: 1rem;
  color: #d9ead3;
}

/* ==========================================================================
   Paginas de enlaces ------ ABOUT US ---------
   ========================================================================== */
.page-container1 {
  max-width: 1200px;
  margin-left: 5rem;
  margin-right: 5rem;
  font-family: "Poppins", sans-serif;
  padding: 3rem 1rem;
}
.page-container1 h1 {
  font-size: 2.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #0056B3;
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #0056b3;
}
.page-container1 p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  color: #333;
  margin-bottom: 1rem;
  margin-left: 5rem;
  margin-right: 10rem;
}
.page-container1 p strong {
  color: #0056b3;
}
.page-container1 .mision-section {
  background-color: #f8f9fa;
  padding: 2rem;
  margin-top: 3rem;
  font-style: normal;
  margin-bottom: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.page-container1 .mision-section h2 {
  font-size: 2.4rem;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
  text-transform: uppercase;
  color: #0056b3;
  margin-bottom: 1rem;
}
.page-container1 .mision-section p {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: #333;
  text-transform: none;
  text-align: justify;
  line-height: 1.8;
}
.page-container1 .who-we h2 {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: justify;
  font-style: normal;
  text-transform: uppercase;
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
  margin-bottom: 1rem;
}
.page-container1 .mision-section2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.page-container1 .mision-section2 .we-do {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-container1 .mision-section2 .we-do .mision-member-photo {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.page-container1 .mision-section2 .we-do .we-do-info {
  flex-grow: 1;
}
.page-container1 .mision-section2 .we-do .we-do-info h3 {
  font-size: 1.5rem;
  text-align: justify;
  color: black;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ddebfa;
  padding-bottom: 0.25rem;
}
.page-container1 .mision-section2 .we-do .we-do-info p {
  font-size: 1.2rem;
  color: #333;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.page-container1 .mision-section2 .we-do .we-do-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-container1 .mision-section2 .we-do .we-do-info ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.page-container1 .mision-section2 .we-do .we-do-info ul li:before {
  /*content: "\2022"; // Viñeta de círculo*/
  color: #007bff;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
  position: absolute;
  left: 0;
}

/* ==========================================================================
   Paginas de enlaces ------- SERVICES --------------
   ========================================================================== */
/* Estilos generales para la página de servicios */
.container-service {
  width: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  /*color: #333;*/
  margin-left: 5rem;
  margin-right: 3rem;
  padding: 0px;
}

.container-service h1 {
  color: #7f6000;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  margin-bottom: 30px;
}

.container-service h2 {
  color: #7f6000;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  margin-bottom: 15px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
  width: 100%; /* Asegura que el título ocupe todo el ancho */
}

/* Estilos para los bloques de servicio individuales (las secciones) */
.service-block { /* Nuevo selector para las secciones principales */
  margin-bottom: 40px;
  margin-right: 6rem;
  padding: 0px;
  /*border: 2px solid #ddd;*/
  border-radius: 8px;
  background-color: #fffaec; /* Añadido un fondo blanco para resaltar */
  display: flex; /* Añadido para el diseño de columnas */
  flex-wrap: wrap; /* Permite que las columnas se envuelvan si la pantalla es pequeña */
  align-items: flex-start; /* Alinea el contenido de las columnas en la parte superior */
}

/* Contenedor para el texto y la imagen dentro de service-block */
.service-content {
  flex: 1; /* Ocupa la mitad del espacio disponible */
  min-width: 45%; /* Asegura que cada columna tenga al menos el 45% */
  padding: 20px; /* Espaciado interno */
  font-family: "Poppins", sans-serif;
  box-sizing: border-box; /* Incluye padding en el ancho */
  border: 2px solid #ddd;
}

.service-block .service-line-image {
  flex: 1; /* Ocupa la otra mitad del espacio disponible */
  min-width: 45%; /* Asegura que cada columna tenga al menos el 45% */
  padding: 20px; /* Espaciado interno */
  box-sizing: border-box; /* Incluye padding en el ancho */
  display: flex; /* Para centrar la imagen dentro de su columna */
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
}

.service-block .service-line-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para los bloques específicos dentro de las secciones */
.service-block h3 {
  color: #2980b9;
  font-size: 1.4rem;
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.service-block p {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  margin-left: 40px;
}

.service-block ul {
  list-style-type: none;
  margin-left: 20px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.service-block li {
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.objetivo, .estrategia, .metodologia, .metas, .methodology-details, .lineas-accion, .compañias {
  background-color: #f9f9f9;
  border-left: 5px solid #3498db;
  padding: 15px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.methodology-details {
  background-color: #eaf6fa; /* Un color diferente para distinguirlo */
  font-family: "Poppins", sans-serif;
}

.lineas-accion {
  background-color: #f0f8ff; /* Otro color para diferenciar */
  border: 1px dashed #aed6f1;
  font-family: "Poppins", sans-serif;
}

.compañias {
  background-color: #fffacd; /* Un color suave para esta sección */
  border: 1px solid #ffecb3;
  font-family: "Poppins", sans-serif;
}

/* ==========================================================================
   Paginas de enlaces desde el navegador SECCION BLOG
   ========================================================================== */
/* ==================      BLOG LISTA      ====================================*/
.blog-posts {
  padding: 50px 10px;
  width: 100%;
  /*margin: 0 auto;*/
  margin-left: 4rem;
  background-color: #fffdf8;
}
.blog-posts h1 {
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  margin-bottom: 70px;
  text-align: left;
  padding-bottom: 10px;
}
.blog-posts .post-list {
  display: flex;
  flex-direction: column;
  margin-left: 5rem;
  margin-right: 5rem;
  gap: 40px;
  /* Un sutil fondo al pasar el cursor */
  /* Quita el borde del último elemento */
  /* Sutil efecto de zoom en la imagen */
}
.blog-posts .post-list .post-link-wrapper {
  display: grid; /* Usaremos grid para un control más preciso */
  grid-template-columns: 1fr 2fr; /* Dos columnas: imagen y texto */
  gap: 20px; /* Espacio entre imagen y texto */
  align-items: start; /* Alinea los items al inicio */
  text-decoration: none;
  color: blue;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
  transition: background-color 0.2s;
}
.blog-posts .post-list .post-link-wrapper:hover {
  background-color: #e2dfdf;
}
.blog-posts .post-list .post-list .post-link-wrapper:last-child {
  border-bottom: none;
}
.blog-posts .post-list .post-item-image {
  position: relative;
  width: 90%;
  padding-top: 70%; /* Proporción 5:3 (alto/ancho). Ajusta este valor si quieres */
  overflow: hidden;
  border-radius: 8px;
}
.blog-posts .post-list .post-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  object-fit: cover; /* ¡Esta es la magia! */
  transition: transform 0.3s ease;
}
.blog-posts .post-list .post-link-wrapper:hover .post-item-image img {
  transform: scale(1.05);
}
.blog-posts .post-list .post-item-content {
  padding: 0; /* Ya no necesita padding, el 'gap' del grid se encarga */
}
.blog-posts .post-list .post-item-content .post-title {
  margin: 0 0 10px 0;
  margin-right: 15rem;
  font-size: 1.6rem;
  text-align: left;
  text-transform: none;
  font-weight: 500;
  color: #7f6000;
  margin-top: 1rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-posts .post-list .post-item-content .post-excerpt {
  color: #555;
  margin: 10px 0;
  margin-right: 10rem;
  line-height: 1.4;
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Define el número de líneas a mostrar. Puedes cambiar este valor. */
  line-clamp: 5; /* ¡ESTA ES LA LÍNEA NUEVA! Usa el mismo número que arriba */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-posts .post-list .post-item-content .post-meta {
  font-size: 1rem;
  text-align: left;
  margin-top: 15px;
  color: #777777;
  font-style: italic;
}

/*===========   FIN LISTA === POST INDIVIDUAL ==============*/
.post-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.post {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.post-meta strong {
  font-weight: bold;
  color: #555555;
}

.post-featured-image {
  margin-bottom: 30px;
  text-align: center;
}

.post-featured-image img {
  max-width: 520px;
  height: 520px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.post-content {
  line-height: 1.5;
  color: #444444;
  font-size: 1.3rem;
  margin-left: 8rem;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-right: 10rem;
}

.post-title {
  margin: 0 0 10px 0;
  font-size: 2.4rem;
  text-align: center;
  text-transform: normal;
  font-weight: 600;
  color: #7f6000;
  margin-top: 1rem;
  margin-bottom: 10px;
  margin-right: 6rem;
  margin-left: 6rem;
  line-height: 1.2;
}

.post-meta {
  font-size: 1rem;
  text-align: center;
  margin-top: 15px;
  color: #777777;
  font-style: italic;
}

/* ==========================================================================
   Paginas de enlaces desde el navegador CONTACT US
   ========================================================================== */
.page-container3 {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  background-color: #fffdf8;
  line-height: 1.4;
  /*color: #333;*/
  margin-left: 5rem;
  margin-right: 10rem;
  padding: 0px;
}

.page-container3 h1 {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.page-container3 p {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: justify;
  margin-left: 3rem;
  margin-right: 15rem;
  padding: 0px;
}

.contact-info {
  margin-top: 40px;
}
.contact-info p {
  text-align: justify;
  margin-left: 5rem;
  margin-bottom: 0rem;
}

.contact-method {
  margin-bottom: 25px;
  margin-left: 10rem;
}

.contact-link {
  display: inline-flex; /* Usa flexbox para alinear icono y texto */
  align-items: center; /* Alinea verticalmente el icono y el texto */
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: blue;
} /* Cambia de color al pasar el cursor */
/* Regla general para todos los iconos en la página de contacto */
.contact-link i {
  font-size: 1.8rem; /* Un poco más grandes para que luzcan */
  /*margin-right: 15px;*/
  width: 40px;
  text-align: left;
}

/* Regla para el icono de email */
.contact-link .fa-envelope {
  color: blue;
}

/* Regla para el icono de X/Twitter (negro) */
.contact-link .fa-x-twitter {
  color: #000000;
}

/* Regla para el icono de Instagram (degradado) */
.contact-link .fa-instagram {
  color: #E1306C;
} /* Un color representativo, ya que el degradado es más complejo */
/* Regla para el texto que acompaña a los iconos */
.contact-link span {
  font-weight: bold;
}

/* ===== FORMULARIO DE CONTACTO ===== */
.contacto {
  max-width: 800px;
  margin: 3rem auto;
  margin-top: 60px;
  padding: 2rem;
  background: rgba(249, 249, 249, 0.7450980392);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contacto h2 {
  text-align: left;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  color: #333;
}

.contacto p {
  text-align: left;
  margin-bottom: 1rem;
  margin-left: 0rem;
  font-size: 1.3rem;
  color: #333;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto input,
.contacto textarea {
  width: 90%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contacto input:focus,
.contacto textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.contacto button {
  background: #0077cc;
  color: #fff;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto button:hover {
  background: #005fa3;
}

/* ==========================================================================
   Paginas de enlaces desde el navegador LEGAL PAGE
   ========================================================================== */
.legal-page {
  background-color: white;
  padding: 3rem 1rem;
}
.legal-page .legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.legal-page .legal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.legal-page .legal-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-page .legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}
.legal-page .legal-content h2, .legal-page .legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}
.legal-page .legal-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
}
.legal-page .legal-content ul, .legal-page .legal-content ol {
  margin: 1rem 0 1.5rem 2rem;
}
.legal-page .legal-content ul li, .legal-page .legal-content ol li {
  margin-bottom: 0.5rem;
}
.legal-page .legal-content a {
  color: white;
  text-decoration: underline;
}
.legal-page .legal-content a:hover {
  text-decoration: none;
}

/* ==========================================================================
  RESPONSIVE @MEDIA
   ========================================================================== */
/*============== Responsive Styles for header.html ======================= */
@media (max-width: 760px) {
  body, header.site-header {
    margin: 0;
    padding: 0;
  }
  header.site-header {
    padding-left: 0.1rem;
    margin-left: 0;
  }
  header.site-header .header-top {
    flex-direction: row;
    gap: 4.3rem;
    text-align: left;
  }
  header.site-header .header-top .logo a {
    display: inline-block;
  }
  header.site-header .header-top .logo img {
    max-height: 80px;
    display: block;
    margin-left: 0;
    padding-left: 0;
  }
  header.site-header .header-top .lang-switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }
  header.site-header .header-top .lang-switch a {
    font-size: 0.7rem;
    display: inline-block;
    padding: 0rem 0.1rem;
  }
  header.site-header .main-nav {
    display: none;
    width: 100%;
    background: #fffaec;
    padding: 1rem 0;
    font-size: 0.1rem;
    text-align: left;
  }
  header.site-header .main-nav.open {
    display: block;
  }
  header.site-header .main-nav ul {
    flex-direction: column;
    font-size: 1rem;
    gap: 1rem;
  }
  header.site-header .menu-toggle {
    display: block;
    font-size: 1.2rem;
    margin: 1rem;
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}
@media (max-width: 760px) {
  /* --- Hero Section --- */
  .hero-section {
    background-color: #fffaec;
    padding: 10px 10px;
  }
  /* Contenedor del título y sub titulo*/
  .hero-title-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0px;
    padding-bottom: 0px; /* Espacio entre título y el siguiente bloque */
  }
  .hero-title h1 {
    font-family: "Poppins", sans-serif;
    color: #7f6000;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
  }
  .hero-title p {
    font-family: "Poppins", sans-serif;
    background-color: #fffaec;
    font-size: 1.4rem;
    margin-left: 1rem;
    font-weight: 300;
    font-style: italic;
  }
  /* --- Our Commitment Section (Title) --- */
  .commitment-title h2 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    padding: 0px;
    margin: 0px;
  }
  /* --- Our Commitment Section (Content) --- */
  .commitment-section-content {
    padding: 3rem;
    background-color: #fffaec;
  }
  .commitment-section-content .commitment-content-container {
    flex-direction: column;
    padding: 0px;
    width: 100%;
    margin: 0px;
  }
  .commitment-section-content .commitment-content-container .commitment-text {
    width: 100%;
  }
  .commitment-section-content .commitment-content-container .commitment-text p {
    font-size: 1rem;
    margin-bottom: 0px;
    text-align: left;
  }
  .commitment-section-content .commitment-content-container .commitment-image {
    width: 100%;
    margin-top: 0px;
    order: 1;
  }
  .commitment-section-content .commitment-content-container .commitment-image img {
    width: 100%;
    height: auto;
  }
  /* --- Advantages Section (Title) --- */
  .advantages-title h2 {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    margin: 0px;
    padding: 0px;
  }
  .advantages-section {
    width: 85%;
    padding: 2rem;
    background-color: #fffaec;
    /* --- Advantages Section (Grid) --- */
  }
  .advantages-section .advantages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0px;
    margin: 0rem;
  }
  .advantages-section .advantages-grid .advantage-item {
    width: 100%;
    padding: 0px;
  }
  .advantages-section .advantages-grid .advantage-item h3 {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }
  .advantages-section .advantages-grid .advantage-item p {
    font-size: 1rem;
    text-align: left;
  }
  /* --- Call To Action (CTA) Section (Image) --- */
  .cta-section {
    width: 95%;
    padding: 1rem;
    background-color: #fffaec;
  }
  .cta-section .cta-image img {
    width: 90%;
    height: auto;
    margin: 0.5px auto;
    display: block;
  }
  /* --- Call To Action (CTA) Section (Title) --- */
  .cta-section-title {
    width: 90%;
    padding: 2rem;
    background-color: #fffaec;
    margin: 0%;
  }
  .cta-section-title .cta-title-container .cta-title h2 {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    padding: 0;
  }
  /* --- Call To Action (CTA) Section (Content) --- */
  .cta-section-content {
    width: 82%;
    margin-right: 20rem;
    margin-left: 3rem;
    padding: 0rem;
    background-color: #fffaec;
  }
  .cta-section-content .cta-content-container {
    flex-direction: column;
    padding: 0px;
  }
  .cta-section-content .cta-content-container .cta-image2 {
    width: 95%;
    margin-top: 0px;
    order: 1;
  }
  .cta-section-content .cta-content-container .cta-image2 img {
    width: 100%;
    height: auto;
  }
  .cta-section-content .cta-content-container .cta-text {
    width: 90%;
  }
  .cta-section-content .cta-content-container .cta-text p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: left;
  }
  /* --- CTA Final --------- */
  .cta-final {
    padding: 0rem;
    width: 95%;
    margin-left: 2rem;
  }
  .cta-final h3 {
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    color: #7f6000;
    text-align: center;
    margin-left: 0rem;
    margin-bottom: 0px;
  }
  .cta-final ul {
    list-style: none;
    padding: 0;
    border: 1px solid #7f6000;
    margin-left: 0rem;
    border-radius: 5px;
    margin-top: 1rem;
    margin-right: 2rem;
  }
  .cta-final ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-left: 0rem;
    margin-right: 1rem;
    padding-left: 1rem;
    position: relative;
  }
  .cta-final p {
    width: 90%;
    font-size: 1rem;
    padding: 0rem;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: justify;
    font-style: italic;
    line-height: 1.2;
    color: #7f6000;
    margin-left: 0rem;
    margin-right: 50rem;
  }
  .cta-final p .texto-negrita {
    font-weight: 600;
  }
  /* --- Section Divider --- */
  .section-divider {
    margin: 0rem;
  }
  /* ==============      Estilos responsive del Footer     =============== */
  .footer-primary {
    background-color: #d9ead2;
    color: rgba(73, 73, 73, 0.938);
    font-weight: 400;
    padding: 1px 0;
    text-align: center;
    font-style: normal;
    font-size: 0.9rem;
  }
  .footer-wrapper {
    background-color: #333;
    width: 100%;
  }
  /* Variables para ajustes manuales */
  :root {
    --logo-margin-left: 10px;
    --logo-margin-top: 5px; /* Ajusta posición horizontal del logo */
    --contact-margin-left: 0px;
    --contact-margin-top: 0px; /* Ajusta posición horizontal del bloque Contact */
  }
  /* Márgenes globales */
  .secondary-footer {
    margin-left: 1px;
    margin-right: 1px;
  }
  /* --- Footer --- */
  .secondary-footer {
    background-color: #333;
    color: #fff;
    display: grid;
    grid-template-rows: auto auto auto; /* 3 filas: Logo, Contact, Redes */
    gap: 20px;
    padding: 40px 30px;
    box-sizing: border-box;
    width: 100%;
    /*margin: 0 auto; /* Centra el footer en pantallas grandes */
  }
  /* Logo */
  .secondary-footer-logo {
    margin-left: var(--logo-margin-left);
    margin-top: var(--logo-margin-top);
  }
  .secondary-footer-logo img {
    height: 40px;
    width: auto;
    display: block;
  }
  /* Bloque Contact */
  .footer-contact {
    margin-left: var(--contact-margin-left);
    margin-top: var(--cotact-margin-top);
    font-size: 0.9rem;
    line-height: 1.3;
  }
  /* Redes sociales */
  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  /* Texto "Follow us" */
  .follow-label {
    font-weight: bold;
    font-size: 0.9rem;
  }
  /* Estilo de enlaces */
  .footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .footer-social a:hover,
  .footer-social a:focus {
    text-decoration: underline;
  }
  /* Íconos de redes */
  .instagram i {
    color: #E1306C; /* Instagram */
  }
  .twitter i {
    color: #fff; /* Blanco para fondo negro */
  }
  .legal-links {
    margin-left: 0rem;
    margin-right: 0rem;
    text-align: center;
  }
  .legal-links p {
    font-weight: 200;
    font-size: 0.9rem;
  }
  .legal-links a {
    font-weight: 400;
    font-size: 0.9rem;
    color: #d9ead3;
  }
  .page-container1 {
    padding: 0px;
    width: 100%;
    margin-left: 1rem;
    font-family: "Poppins", sans-serif;
    margin-right: 3rem;
    /* --- Mision Section --- */
    /* --- Who We Are Section --- */
    /* --- Mision Section 2 (We Do Blocks) --- */
  }
  .page-container1 h1 {
    font-size: 1.6rem;
    text-align: left;
    font-weight: 600;
    margin-top: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #0056b3;
  }
  .page-container1 p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    margin-right: 1.5rem;
    margin-left: 1.8rem;
    margin-bottom: 5px;
    text-align: left;
  }
  .page-container1 .mision-section {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .page-container1 .mision-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 15px;
  }
  .page-container1 .mision-section p {
    font-size: 1rem;
    text-align: left;
  }
  .page-container1 .who-we h2 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .page-container1 .mision-section2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .page-container1 .mision-section2 .we-do {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  .page-container1 .mision-section2 .we-do:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page-container1 .mision-section2 .we-do .mision-member-photo {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
  }
  .page-container1 .mision-section2 .we-do .we-do-info {
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #7f6000;
  }
  .page-container1 .mision-section2 .we-do .we-do-info h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .page-container1 .mision-section2 .we-do .we-do-info ul {
    list-style-position: inside;
    padding-left: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
  }
  .page-container1 .mision-section2 .we-do .we-do-info ul li {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
  .container-service {
    padding: 2px;
    width: 100%;
    margin: 0%;
    font-family: "Poppins", sans-serif;
    /* Contenedor para el texto y la imagen dentro de service-block */
    /* Estilos para los bloques específicos dentro de las secciones */
  }
  .container-service h1 {
    color: #7f6000;
    font-size: 1.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    margin-top: 3rem;
    margin-left: 1rem;
    margin-bottom: 30px;
  }
  .container-service h2 {
    color: #7f6000;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    margin-bottom: 15px;
    margin-left: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    width: 93%; /* Asegura que el título ocupe todo el ancho */
  }
  .container-service .service-block { /* Nuevo selector para las secciones principales */
    flex-direction: column;
    margin-bottom: 40px;
    margin-right: 3rem;
    margin-left: 1rem;
    padding: 0px;
    width: 90%;
    background-color: #fffaec; /* Añadido un fondo blanco para resaltar */
    border: 2px solid #adabab;
  }
  .container-service .service-content {
    min-width: 45%; /* Asegura que cada columna tenga al menos el 45% */
    padding: 20px; /* Espaciado interno */
    font-family: "Poppins", sans-serif;
  }
  .container-service .service-block .service-line-image {
    min-width: 45%; /* Asegura que cada columna tenga al menos el 45% */
    padding: 20px; /* Espaciado interno */
    display: flex; /* Para centrar la imagen dentro de su columna */
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
  }
  .container-service .service-block .service-line-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .container-service .service-block h3 {
    color: #df8705;
    font-size: 1.4rem;
    margin-top: 25px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  .container-service .service-block p {
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    margin-left: 40px;
  }
  .container-service .service-block ul {
    list-style-type: none;
    margin-left: 10px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  .container-service .service-block li {
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
  }
  .container-service .objetivo, .container-service .estrategia, .container-service .metodologia, .container-service .metas, .container-service .methodology-details, .container-service .lineas-accion, .container-service .compañias {
    background-color: #f9f9f9;
    border-left: 5px solid #3498db;
    padding: 15px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
  }
  .container-service .methodology-details {
    background-color: #eaf6fa; /* Un color diferente para distinguirlo */
    font-family: "Poppins", sans-serif;
  }
  .container-service .lineas-accion {
    background-color: #f0f8ff; /* Otro color para diferenciar */
    font-family: "Poppins", sans-serif;
  }
  .container-service .compañias {
    background-color: #fffacd; /* Un color suave para esta sección */
    font-family: "Poppins", sans-serif;
  }
  .page-container3 {
    padding: 0px;
    margin: 0%;
    width: 100%;
    /* --- Contact Info Section --- */
    /* --- Ready to Get Started (Form) Section --- */
  }
  .page-container3 h1 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: left;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-top: 3rem;
  }
  .page-container3 p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-right: 2rem;
    margin-bottom: 15px;
    text-align: justify;
  }
  .page-container3 .contact-info {
    padding: 0rem;
    margin-left: 0rem;
    width: 100%;
    margin-top: 4rem;
    text-align: left;
  }
  .page-container3 .contact-info p {
    font-size: 1.2rem;
    margin-left: 3rem;
    margin-bottom: 10px;
    text-align: left;
  }
  .page-container3 .contact-info .contact-method {
    justify-content: left;
    margin-bottom: 10px;
  }
  .page-container3 .contact-info .contact-method .contact-link {
    font-size: 1.1rem;
    margin-left: 0rem;
    padding: 0px 5px;
  }
  .page-container3 .contact-info .contact-method .contact-link i {
    margin-right: 8px;
    margin-left: 0rem;
    font-size: 1.2em;
  }
  .page-container3 .contacto {
    width: 85%;
    padding: 25px 15px;
    text-align: center;
  }
  .page-container3 .contacto h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-container3 .contacto p {
    font-size: 0.9em;
    margin-bottom: 25px;
  }
  .page-container3 .contacto form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .page-container3 .contacto form input[type=text],
  .page-container3 .contacto form input[type=email],
  .page-container3 .contacto form textarea {
    padding: 12px;
    font-size: 0.9em;
    width: 100%;
  }
  .page-container3 .contacto form textarea {
    min-height: 100px;
  }
  .page-container3 .contacto form button[type=submit] {
    padding: 12px 20px;
    font-size: 1em;
    width: 100%;
  }
  /* ==========================================================================
                              responsive para BLOG
     ========================================================================== */
  /* ==================      responsive LISTA      ====================================*/
  .blog-posts {
    padding: 0rem;
    width: 100%;
    margin: 0rem;
    background-color: #fffdf8;
  }
  .blog-posts h1 {
    font-size: 2.4rem;
    width: 100%;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-left: 1rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .blog-posts .post-list {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    width: 95%;
    margin-right: 1rem;
    gap: 4px;
    /* Un sutil fondo al pasar el cursor */
    /* Quita el borde del último elemento */
    /* Sutil efecto de zoom en la imagen */
  }
  .blog-posts .post-list .post-link-wrapper {
    display: grid; /* Usaremos grid para un control más preciso */
    grid-template-columns: 1fr 2fr; /* Dos columnas: imagen y texto */
    gap: 1px; /* Espacio entre imagen y texto */
    align-items: start; /* Alinea los items al inicio */
    text-decoration: none;
    color: blue;
    padding-bottom: 2px;
    border-bottom: 2px solid #eee;
    transition: background-color 0.2s;
  }
  .blog-posts .post-list .post-link-wrapper:hover {
    background-color: #e2dfdf;
  }
  .blog-posts .post-list .post-list .post-link-wrapper:last-child {
    border-bottom: none;
  }
  .blog-posts .post-list .post-item-image {
    position: relative;
    width: 90%;
    padding-top: 80%; /* Proporción 5:3 (alto/ancho). Ajusta este valor si quieres */
    overflow: hidden;
    border-radius: 8px;
  }
  .blog-posts .post-list .post-item-image img {
    position: absolute;
    top: 30%;
    left: 0;
    width: 85%;
    height: 95%;
    object-fit: cover; /* ¡Esta es la magia! */
    transition: transform 0.3s ease;
  }
  .blog-posts .post-list .post-link-wrapper:hover .post-item-image img {
    transform: scale(1.05);
  }
  .blog-posts .post-list .post-item-content {
    padding: 0; /* Ya no necesita padding, el 'gap' del grid se encarga */
  }
  .blog-posts .post-list .post-item-content .post-title {
    margin: 0 0 10px 0;
    margin-right: 0rem;
    font-size: 1rem;
    text-align: left;
    text-transform: none;
    font-weight: 500;
    color: #7f6000;
    margin-top: 1rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .blog-posts .post-list .post-item-content .post-excerpt {
    color: #555;
    margin: 1px 0;
    margin-right: 0rem;
    line-height: 1.4;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Define el número de líneas a mostrar. Puedes cambiar este valor. */
    line-clamp: 5; /* ¡ESTA ES LA LÍNEA NUEVA! Usa el mismo número que arriba */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-posts .post-list .post-item-content .post-meta {
    font-size: 0.8rem;
    text-align: left;
    margin-top: 15px;
    color: #777777;
    font-style: italic;
  }
  /*===========   FIN LISTA === POST INDIVIDUAL responsive ==============*/
  .post-container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }
  .post {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
  }
  .post-meta strong {
    font-weight: bold;
    color: #555555;
  }
  .post-featured-image {
    margin-bottom: 10px;
    text-align: center;
  }
  .post-featured-image img {
    max-width: 380px;
    height: 380px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .post-content {
    line-height: 1.4;
    color: #444444;
    font-size: 1.1rem;
    margin-left: 1rem;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-right: 0rem;
  }
  .post-title {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    text-align: left;
    text-transform: normal;
    font-weight: 600;
    color: #7f6000;
    margin-top: 3rem;
    margin-bottom: 10px;
    margin-right: 1rem;
    margin-left: 0rem;
    line-height: 1.2;
  }
  .post-meta {
    font-size: 0.8rem;
    text-align: left;
    margin-top: 15px;
    margin-left: 1rem;
    margin-right: 1rem;
    color: #777777;
    font-style: italic;
  }
  /* ==========================================================================
                              responsive para LEGAL
     ========================================================================== */
  .legal-page {
    background-color: white;
    padding: 0rem;
    margin: 0rem;
    width: 100%;
  }
  .legal-page .legal-container {
    margin: 0rem;
    background: white;
  }
  .legal-page .legal-container .legal-header {
    text-align: left;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .legal-page .legal-container .legal-header h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-left: 0rem;
    text-transform: uppercase;
  }
  .legal-page .legal-container .legal-content {
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
  }
  .legal-page .legal-container .legal-content h2, .legal-page .legal-container .legal-content h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
  }
  .legal-page .legal-container .legal-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: left;
  }
  .legal-page .legal-container .legal-content ul, .legal-page .legal-container .legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
  }
  .legal-page .legal-container .legal-content ul li, .legal-page .legal-container .legal-content ol li {
    margin-bottom: 0.5rem;
  }
  .legal-page .legal-container .legal-content a {
    color: white;
    text-decoration: underline;
  }
  .legal-page .legal-container .legal-content a:hover {
    text-decoration: none;
  }
}

/*# sourceMappingURL=style.css.map */