/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: A plain-vanilla & lightweight theme for Elementor page builder
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.6.1.1670329212
Updated: 2022-12-06 12:20:12
*/

/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
  --aja-verde:        #22b24c;
  --aja-verde-osc:    #1a8a2e;
  --aja-negro:        #221f1f;
  --aja-gris-sep:     #d9d9d9;
  --aja-borde:        #eef0ee;
  --aja-footer-top:   #00663d;
  --aja-footer-bot:   #01562e;
  --aja-fuente:       'Lato', sans-serif;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

/* --- Contenedor ---------------------------------------------------------- */

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1320px !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 32px !important;
  min-height: 88px;
  box-sizing: border-box;
}

/* --- Logo ---------------------------------------------------------------- */

.site-header .site-branding {
  flex: 0 0 auto;
}

.site-header .site-logo img,
.site-header .custom-logo {
  height: 46px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}

/* --- Navegación ---------------------------------------------------------- */

.site-header .site-navigation {
  flex: 0 1 auto;
}

.site-header .site-navigation .menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .site-navigation .menu > li {
  margin: 0;
  padding: 0;
}

/* --- Tipografía de los enlaces ------------------------------------------- */

.site-header .site-navigation .menu > li > a {
  font-family: var(--aja-fuente);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--aja-negro);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 0 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.site-header .site-navigation .menu > li > a:hover,
.site-header .site-navigation .menu > li.current-menu-item > a {
  color: var(--aja-verde);
  border-bottom-color: var(--aja-verde);
}

/* --- Separadores "|" ------------------------------------------------------ */

.site-header .site-navigation .menu > li.separator {
  margin: 0 -3px;
}

.site-header .site-navigation .menu > li.separator > a {
  color: var(--aja-gris-sep);
  font-weight: 400;
  padding: 0;
  pointer-events: none;
  border-bottom: none;
}

/* --- Ícono de Facebook ---------------------------------------------------- */

.site-header .site-navigation .menu > li:last-child > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background: var(--aja-negro);
  color: #fff;
  border-bottom: none;
  transition: background .2s ease;
}

.site-header .site-navigation .menu > li:last-child > a:hover {
  background: var(--aja-verde);
  border-bottom: none;
}

.site-header .site-navigation .menu > li:last-child .fa {
  font-size: 15px;
}

/* --- Ajuste para pantallas medianas -------------------------------------- */
/* Reduce tipografía y logo para que el menú entre sin desbordar             */

@media (min-width: 981px) and (max-width: 1400px) {
  .site-header .site-navigation .menu       { gap: 11px; }
  .site-header .site-navigation .menu > li > a { font-size: 13px; }
  .site-header .site-logo img,
  .site-header .custom-logo                 { height: 40px !important; }
  .site-header .header-inner                { gap: 14px; padding: 0 20px !important; }
}

/* --- Responsive: toggle vs nav horizontal -------------------------------- */

@media (min-width: 981px) {
  .site-header .site-navigation-toggle-holder,
  .site-header .site-navigation-dropdown {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-header .site-navigation {
    display: none;
  }
}

/* Opción B: contenedor más angosto */
.site-header .header-inner { max-width: 1140px !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

/* --- Fondo: gradiente sobre la imagen de la hoja ------------------------- */
/* La imagen se carga desde Elementor > Site Settings > Footer > Background   */

.site-footer {
  position: relative;
  font-family: var(--aja-fuente);
  color: #fff;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 86, 46, .88),
    rgba(0, 102, 61, .88)
  );
  pointer-events: none;
  z-index: 0;
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 32px 44px;
  text-align: center;
}

/* --- Orden visual: menú → contacto → logo -------------------------------- */

.site-footer .site-navigation { order: 1; }
.site-footer .copyright       { order: 2; }
.site-footer .site-branding   { order: 3; }

/* --- Menú ---------------------------------------------------------------- */

.site-footer .site-navigation .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .site-navigation .menu > li {
  margin: 0;
  padding: 0;
}

.site-footer .site-navigation .menu > li > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease;
}

.site-footer .site-navigation .menu > li > a:hover {
  opacity: 1;
}

.site-footer .site-navigation .menu > li.separator > a {
  opacity: .45;
  font-weight: 400;
  pointer-events: none;
}

/* --- Bloque de contacto y legal ------------------------------------------ */
/* Selectores replicados desde .copyright.show > p > span para ganar          */
/* especificidad frente a los estilos que inyecta Elementor.                  */

.site-footer .copyright.show > p {
  margin: 0;
  font-size: inherit;
}

.site-footer .copyright.show > p > span.footer-contact {
  display: block;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  margin-bottom: 18px;
}

.site-footer .copyright.show > p > span.footer-contact a {
  font-size: 16px !important;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.site-footer .copyright.show > p > span.footer-contact a:hover {
  opacity: .82;
}

.site-footer .copyright.show > p > span.footer-contact .sep {
  opacity: .45;
  margin: 0 10px;
}

.site-footer .copyright.show > p > span.footer-legal {
  display: block;
  font-size: 12.5px !important;
  font-weight: 400;
  letter-spacing: .02em;
  opacity: .7;
}

.site-footer .copyright,
.site-footer .copyright.show > p,
.site-footer .copyright.show > p > span,
.site-footer .copyright.show > p > span a {
  font-family: var(--aja-fuente) !important;
}

/* --- Logo en blanco ------------------------------------------------------ */

.site-footer .site-logo img,
.site-footer .custom-logo {
  filter: brightness(0) invert(1) !important;
  height: 50px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
}


/* ==========================================================================
   FORMULARIO MAKE A PAYMENT
   ========================================================================== */

#makeapayment {
  background: #02010100;
  padding: 25px;
  margin: 50px 0;
}

#makeapayment fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#makeapayment input[type="text"],
#makeapayment input[type="number"],
#makeapayment button[type="submit"] {
  font-family: var(--aja-fuente);
  width: 100%;
}

#makeapayment input[type="text"],
#makeapayment input[type="number"] {
  width: 100%;
  border: 1px solid #CCC;
  background-color: #02010100;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 16px;
  font-weight: 200;
  font-style: normal;
  text-decoration: none;
  line-height: 16px;
  letter-spacing: 1px;
  word-spacing: 0px;
}

#makeapayment input[type="text"]:hover,
#makeapayment input[type="number"]:hover {
  border: 1px solid #AAA;
  transition: border-color .3s ease-in-out;
}

#makeapayment input:focus,
#makeapayment textarea:focus {
  outline: 0;
  border: 1px solid #999;
}

#makeapayment button[type="submit"] {
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #ffffff;
  background-color: #009056;
  border-style: none;
  border-radius: 5px;
  box-shadow: 0 0 0 0 rgb(66 133 244 / 0%);
  width: 25%;
  position: absolute;
}

#makeapayment button[type="submit"]:hover {
  background: rgb(23, 172, 4);
  transition: background-color .3s ease-in-out;
}

#makeapayment button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .5);
}

#makeapayment ::placeholder {
  color: #888;
}

@media screen and (max-width: 480px) {
  #makeapayment input[type="text"],
  #makeapayment input[type="number"] {
    font-size: 10px;
    line-height: 10px;
  }

  #makeapayment button[type="submit"] {
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 200;
    line-height: 10px;
    position: static;
  }
}


/* para single-post ini*/
/* ==========================================================================
   ARTÍCULO INDIVIDUAL (single.php)
   Agregar al final de style.css del child theme
   ========================================================================== */

.aja-single {
  font-family: var(--aja-fuente);
  color: var(--aja-negro);
  background: #fff;
}

/* --- Banda superior "Helpful Insights" ----------------------------------- */

.aja-eyebrow-band {
  background: #e6f7e8;
}

.aja-eyebrow-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 32px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.aja-leaf {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: url('assets/img/leaf.png') center / contain no-repeat;
}

.aja-rule {
  width: 2px;
  height: 28px;
  background: var(--aja-verde);
  display: inline-block;
  flex: 0 0 auto;
}

.aja-eyebrow-link {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aja-verde-osc);
  text-decoration: none;
}

.aja-eyebrow-link:hover {
  text-decoration: underline;
}

/* --- Encabezado del artículo --------------------------------------------- */

.aja-article-head {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 56px) clamp(20px, 5vw, 32px) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 52px);
  align-items: center;
}

.aja-kicker {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aja-verde-osc);
}

.aja-article-title {
  margin: 12px 0 18px;
  font-size: clamp(30px, 5.5vw, 42px);
  line-height: 1.12;
  font-weight: 500;
  color: var(--aja-verde-osc);
  letter-spacing: -.01em;
  text-wrap: balance;
}

.aja-article-meta {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: #6a776e;
}

.aja-article-head-media {
  display: flex;
  justify-content: center;
}

.aja-article-photo {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(20, 50, 30, .2);
}

/* --- Cuerpo del artículo -------------------------------------------------- */

.aja-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}

.aja-article-body p {
  margin: 0 0 22px;
  font-size: 18.5px;
  line-height: 1.8;
  color: #33403a;
}

.aja-article-body h2 {
  margin: 42px 0 18px;
  font-size: 26px;
  font-weight: 900;
  color: var(--aja-verde-osc);
}

.aja-article-body h3 {
  margin: 34px 0 14px;
  font-size: 21px;
  font-weight: 900;
  color: var(--aja-verde-osc);
}

.aja-article-body a {
  color: var(--aja-verde-osc);
  text-decoration: underline;
}

.aja-article-body ul,
.aja-article-body ol {
  margin: 0 0 22px;
  padding: 0 0 0 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aja-article-body ul > li,
.aja-article-body ol > li {
  font-size: 18px;
  line-height: 1.7;
  color: #33403a;
  padding-left: 26px;
  position: relative;
}

.aja-article-body ul > li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aja-verde);
  font-weight: 900;
}

.aja-article-body ol {
  counter-reset: aja-li;
}

.aja-article-body ol > li::before {
  counter-increment: aja-li;
  content: counter(aja-li) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aja-verde);
  font-weight: 900;
}

.aja-article-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--aja-verde);
  font-size: 19px;
  line-height: 1.7;
  color: #33403a;
  font-style: italic;
}

.aja-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* --- Llamada a la acción -------------------------------------------------- */

.aja-cta {
  margin-top: 44px;
  padding: 34px;
  background: #e6f7e8;
  border-radius: 16px;
  text-align: center;
}

.aja-cta-title {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 900;
  color: #1c1a1a;
}

.aja-cta-button {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  background: var(--aja-verde);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(34, 178, 76, .26);
  transition: transform .2s ease, background .2s ease;
}

.aja-cta-button:hover {
  background: var(--aja-verde-osc);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* --- Volver al índice ----------------------------------------------------- */

.aja-back {
  margin: 36px 0 0;
}

.aja-back a {
  font-size: 15px;
  font-weight: 700;
  color: var(--aja-verde-osc);
  text-decoration: none;
}

.aja-back a:hover {
  text-decoration: underline;
}

/* --- Ajustes móviles ------------------------------------------------------ */

@media (max-width: 700px) {
  .aja-eyebrow-inner {
    padding: 28px 20px;
  }

  .aja-article-body {
    padding: 20px 20px 60px;
  }

  .aja-article-body p {
    font-size: 17px;
  }

  .aja-cta {
    padding: 26px 20px;
  }
}

/* --- Respeto por reduced motion ------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .aja-cta-button {
    transition: none;
  }
  .aja-cta-button:hover {
    transform: none;
  }
}

.aja-article-body .aja-cta-button,
.aja-article-body .aja-back a {
  text-decoration: none;
}

/* para single-post fin */

/* home post ini */
/* ==========================================================================
   INSIGHTS — Grilla de tarjetas
   Agregar al final de style.css del child theme
   ========================================================================== */

.aja-insights {
  font-family: var(--aja-fuente);
}

/* --- Encabezado (solo con show_header="1") ------------------------------- */

.aja-insights-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
  margin-bottom: 34px;
}

.aja-insights-head-text {
  flex: 1 1 420px;
}

.aja-insights-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.aja-insights-eyebrow .aja-leaf {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: url('assets/img/leaf.png') center / contain no-repeat;
}

.aja-insights-eyebrow .aja-rule {
  width: 2px;
  height: 24px;
  background: var(--aja-verde);
  display: inline-block;
  flex: 0 0 auto;
}

.aja-insights-kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aja-verde-osc);
}

.aja-insights-title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 500;
  color: #1c1a1a;
  letter-spacing: -.01em;
  line-height: 1.15;
}

.aja-insights-sub {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: #3c4a3f;
  max-width: 640px;
}

.aja-insights-viewall {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--aja-verde-osc);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}

.aja-insights-viewall:hover {
  color: var(--aja-verde);
}

/* --- Grilla --------------------------------------------------------------- */

.aja-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

/* --- Tarjeta -------------------------------------------------------------- */

.aja-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eef3ec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(20, 60, 30, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.aja-card:hover,
.aja-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 80, 40, .14);
}

.aja-card:focus-visible {
  outline: 3px solid var(--aja-verde);
  outline-offset: 3px;
}

.aja-card-media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aja-card-media-empty {
  background-image: linear-gradient(135deg, #cfe0d6 0%, #7f9c8d 100%);
}

.aja-card-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.aja-card-kicker {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aja-verde-osc);
}

.aja-card-title {
  margin: 12px 0;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  color: #1c1a1a;
}

.aja-card-excerpt {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #52605a;
  flex: 1 1 auto;
}

.aja-card-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--aja-verde-osc);
  margin-top: auto;
}

.aja-card:hover .aja-card-more {
  color: var(--aja-verde);
}

/* --- Móvil ---------------------------------------------------------------- */

@media (max-width: 700px) {
  .aja-insights-head {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .aja-insights-grid {
    gap: 22px;
  }

  .aja-card-body {
    padding: 22px 20px 26px;
  }
}

/* --- Reduced motion -------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .aja-card {
    transition: none;
  }
  .aja-card:hover {
    transform: none;
  }
}

.aja-card,
.aja-card:hover,
.aja-card:focus,
.aja-card .aja-card-kicker,
.aja-card .aja-card-title,
.aja-card .aja-card-excerpt,
.aja-card .aja-card-more {
  text-decoration: none !important;
}

.aja-insights,
.aja-insights-grid,
.aja-card {
  max-width: 100%;
  box-sizing: border-box;
}

.aja-insights-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .aja-insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.aja-insights,
.aja-insights-grid,
.aja-card {
  max-width: 100%;
  box-sizing: border-box;
}

.aja-insights-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .aja-insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
/*home post fin */