/* =========================================================
   CAMINANDO CON PROPÓSITO - CSS BASE
   Identidad visual principal del sitio
========================================================= */

:root {
  --ccp-bg: #DEDEEA;
  --ccp-primary: #836a8d;
  --ccp-primary-dark: #6e5877;
  --ccp-title: #61678B;
  --ccp-accent: #78ACC1;
  --ccp-accent-dark: #45798e;
  --ccp-text: #3B3B3B;
  --ccp-muted: #555;
  --ccp-white: #ffffff;
  --ccp-soft: #d3c2e0;
  --ccp-badge: #b9a6cc;
  --ccp-shadow: rgba(0, 0, 0, 0.08);
  --ccp-radius: 18px;
}

/* =========================================================
   RESET BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background-color: var(--ccp-bg);
  color: var(--ccp-text);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ccp-accent-dark);
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: #4d5370 !important;
  text-decoration: underline;
}

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

header {
  background-color: var(--ccp-primary);
  text-align: center;
  padding: 2rem;
}

header h1 {
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  margin: 0;
}

/* =========================================================
   NAVEGACIÓN
========================================================= */

nav {
  font-family: 'Mulish', sans-serif;
  background-color: rgba(131, 106, 141, 0.96);
  padding: 0.65rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 68px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  max-width: 400px;
}

.nav-logo:hover {
  color: white !important;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.15;
  font-family: 'Mulish', sans-serif;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--ccp-soft) !important;
  text-decoration: none;
}

.nav-cta {
  background-color: var(--ccp-accent);
  color: white !important;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 0.86rem !important;
}

.nav-cta:hover {
  background-color: var(--ccp-accent-dark);
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 23px;
  height: 2px;
  background-color: white;
  display: block;
  transition: 0.3s ease;
}

.nav-links a.active {
  color: #d3c2e0 !important;
  font-weight: 900;
}

.nav-links a.active:not(.nav-cta)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background-color: #d3c2e0;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* espacio para compensar nav fixed */
main {
  padding-top: 0;
}



/* =========================================================
   BOTONES
========================================================= */

.boton-descarga,
.btn-principal {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--ccp-title);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
}

.boton-descarga:hover,
.btn-principal:hover {
  background-color: var(--ccp-primary);
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
}

.boton-descarga2,
.btn-secundario {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--ccp-accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
}

.boton-descarga2:hover,
.btn-secundario:hover {
  background-color: var(--ccp-accent-dark);
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-suave {
  display: inline-block;
  margin-top: 1rem;
  background-color: white;
  color: var(--ccp-primary);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid rgba(131, 106, 141, 0.18);
  transition: all 0.3s ease;
}

.btn-suave:hover {
  background-color: var(--ccp-soft);
  color: var(--ccp-primary-dark) !important;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================================================
   SECCIONES GENERALES
========================================================= */

.section {
  padding: 5rem 1rem;
}

.section-light {
  background-color: white;
}

.section-soft {
  background-color: var(--ccp-bg);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  color: var(--ccp-title);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--ccp-muted);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  color: var(--ccp-accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.text-center {
  text-align: center;
}



/* =========================================================
   FORMULARIOS
========================================================= */

form input,
form select,
form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

form label {
  font-weight: 600;
}

form button {
  background-color: var(--ccp-accent);
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

form button:hover {
  background-color: var(--ccp-accent-dark);
}

input[type="checkbox"] {
  accent-color: var(--ccp-primary) !important;
  border-radius: 4px;
}

/* =========================================================
   FILTROS / BADGES
========================================================= */

.filtro {
  border: 2px solid var(--ccp-accent);
  background-color: transparent;
  color: var(--ccp-accent-dark);
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.filtro:hover,
.filtro:focus {
  background-color: #abd0de;
  color: white;
  border-color: #76bad3;
  transform: scale(1.05);
}

.filtro.active {
  background-color: var(--ccp-accent);
  color: white;
  border-color: var(--ccp-accent-dark);
}

.badge,
.resource-badge {
  background-color: var(--ccp-badge) !important;
  color: white;
}

/* =========================================================
   PORTADAS / EFECTO LIBRO
========================================================= */
.portada-montana {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 3rem;
  background: linear-gradient(to top, #e6e4f3 0%, transparent 50%);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 16px var(--ccp-shadow);
  max-width: 420px;
  margin: auto;
}

.portada-montana::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: url('/assets/img/silueta-montana.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0;
  z-index: 0;
}

.portada-montana img {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 320px;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portada-montana img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.etiqueta-cinta,
.etiqueta-cinta2 {
  position: absolute;
  top: 1rem;
  left: -1rem;
  color: white;
  padding: 0.4rem 1.5rem;
  font-size: 0.85rem;
  transform: rotate(-20deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 6px;
  font-weight: bold;
  z-index: 2;
}

.etiqueta-cinta {
  background-color: var(--ccp-primary);
}

.etiqueta-cinta2 {
  background-color: var(--ccp-accent);
}

.book-effect {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.20);
  transform: rotateY(-2deg);
  transition: transform 0.5s ease;
}

.book-effect:hover {
  transform: rotateY(0deg) scale(1.03);
}

.book-wrap .pill-badge {
  position: absolute;
  top: -10px;
  left: -8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ccp-primary);
  box-shadow: 0 6px 16px rgba(131,106,141,.15);
}

.book-shadow {
  width: 70%;
  height: 14px;
  margin: 14px auto 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(0,0,0,.20), transparent 70%);
  filter: blur(6px);
}

/* =========================================================
   CARDS GENERALES
========================================================= */

.card-body {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}

.card-title {
  color: var(--ccp-title);
  font-weight: 600;
}

.card-text {
  font-style: italic;
}

.glass-card {
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 30px rgba(69,121,142,.08);
  backdrop-filter: blur(6px);
  border-radius: 16px;
}

.glass-quote {
  background: linear-gradient(135deg, rgba(131,106,141,.08), rgba(69,121,142,.06));
  border: 1px solid rgba(131,106,141,.15);
  border-radius: 16px;
}

/* =========================================================
   LISTAS
========================================================= */

.resume-list {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.resume-list li {
  margin-bottom: .5rem;
  color: #555;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #555;
  margin-bottom: .35rem;
  font-weight: 600;
}

.trust-list i {
  color: var(--ccp-accent-dark);
}

/* =========================================================
   TESTIMONIOS
========================================================= */

.testimonial,
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial {
  border-left: 4px solid var(--ccp-primary);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--ccp-primary);
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.testimonial p,
.testimonial-card p {
  line-height: 1.6;
}

.testimonial .author,
.testimonial-card .author {
  color: var(--ccp-primary);
  font-weight: 700;
}



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

.site-footer {
  background:
    linear-gradient(135deg, rgba(69, 121, 142, 1), rgba(131, 106, 141, 0.96));
  color: white;
  font-family: 'Mulish', sans-serif;
  padding: 4rem 1.5rem 2rem;
  font-size: 0.92rem;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  height: 62px;
  width: auto;
  margin-bottom: 1.2rem;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.footer-logo:hover {
  transform: scale(1.06);
  filter: brightness(1.12);
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.65rem;
}

.footer-column a,
.footer-credit {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-column a:hover,
.footer-credit:hover {
  color: #d3c2e0 !important;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  color: white !important;
  font-size: 1.18rem;
  text-decoration: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  text-decoration: none !important;
}

.footer-note {
  margin: 2.6rem auto 0;
  padding: 1.15rem 1.4rem;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 0.87rem;
  text-align: center;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.footer-bottom p {
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* =========================================================
   BOTÓN FLOTANTE WHATSAPP
========================================================= */

.btn-whatsapp {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 22px;
  right: 22px;
  background-color: #25D366;
  color: white !important;
  border-radius: 50%;
  text-align: center;
  font-size: 1.75rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  color: white !important;
  transform: scale(1.08) translateY(-2px);
  text-decoration: none !important;
}

.btn-whatsapp i {
  line-height: 1;
}

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

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 3rem 1.1rem 1.8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    height: 54px;
  }

  .footer-socials {
    justify-content: center;
    gap: 0.65rem;
  }

  .social-link {
    width: 39px;
    height: 39px;
    font-size: 1.1rem;
  }

  .footer-note {
    padding: 1rem;
  }

  .footer-note p {
    font-size: 0.82rem;
  }

  .btn-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
    font-size: 1.55rem;
  }
}

/* =========================================================
   UTILIDADES
========================================================= */

.title-gradient {
  background: linear-gradient(90deg, var(--ccp-accent-dark), var(--ccp-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shadow-xl {
  box-shadow: 0 24px 48px rgba(0,0,0,.15)!important;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

a:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(69,121,142,.35);
  outline-offset: 2px;
  border-radius: 10px;
}


/* =========================================================
   SOBRE MÍ - CAMINANDO CON PROPÓSITO
========================================================= */

.about-hero {
  min-height: 58vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.82)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.about-box {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 3rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  text-align: center;
}

.about-photo img {
  width: 100%;
  max-width: 430px;
  border-radius: 24px;
  transform: rotate(-3deg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo img:hover {
  transform: rotate(0deg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.about-content h1 {
  color: #61678B;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.about-content p {
  color: #444;
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.about-signature {
  color: #836a8d !important;
  font-weight: 800;
  font-size: 1.08rem !important;
  margin-top: 1.4rem;
}


/* =========================================================
   SOBRE MÍ - REDES
========================================================= */

.about-social-section {
  background-color: #DEDEEA;
  padding: 4.5rem 1.2rem;
}

.about-social-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-social-box h2 {
  color: #61678B;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.about-social-box p {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #444;
  line-height: 1.8;
}

.about-social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  color: white !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  transition: all 0.3s ease;
}

.about-social-btn:hover {
  transform: translateY(-3px);
  text-decoration: none !important;
  color: white !important;
}

.about-social-btn.instagram {
  background-color: #836a8d;
}

.about-social-btn.facebook {
  background-color: #78ACC1;
}

.about-social-btn.pinterest {
  background-color: #b95d6a;
}

.about-social-btn.whatsapp-channel {
  background-color: #45798e;
}


/* =========================================================
   SOBRE MÍ - VERSÍCULO
========================================================= */

.about-verse-section {
  background-color: #ffffff;
  padding: 4rem 1.2rem;
}

.about-verse {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid #BCB9D8;
  border-radius: 20px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(131,106,141,0.08), rgba(120,172,193,0.10));
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-verse p {
  color: #61678B;
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0.7rem;
}

.about-verse span {
  display: block;
  color: #836a8d;
  font-weight: 800;
}


/* =========================================================
   SOBRE MÍ - CTA FINAL
========================================================= */

.about-final-section {
  background-color: #DEDEEA;
  padding: 4.5rem 1.2rem;
}

.about-final-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255,255,255,0.78);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.about-final-box h2 {
  color: #61678B;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.about-final-box p {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  color: #444;
  line-height: 1.8;
}

.about-final-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE SOBRE MÍ
========================================================= */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    text-align: center;
  }

  .about-photo img {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .about-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
  }

  .about-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .about-photo img {
    max-width: 300px;
  }

  .about-content h1 {
    font-size: 1.8rem;
  }

  .about-social-section,
  .about-verse-section,
  .about-final-section {
    padding: 3.4rem 1rem;
  }

  .about-social-buttons,
  .about-final-actions {
    flex-direction: column;
  }

  .about-social-btn,
  .about-final-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-verse {
    padding: 1.6rem 1.2rem;
  }

  .about-verse p {
    font-size: 1.05rem;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.65rem 1rem;
    min-height: 64px;
  }

  .logo-text {
    font-size: 0.82rem;
    max-width: 190px;
  }

  .logo-img {
    height: 34px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(97, 103, 139, 0.98);
    position: absolute;
    top: 64px;
    left: 0;
    text-align: center;
    padding: 1rem 0 1.2rem;
    gap: 0.8rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-foto-texto {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
    margin: auto;
  }

  .hero-foto,
  .hero-texto {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .hero-texto p {
    text-align: left;
    margin: 15px;
  }

  .btn-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  header h1 {
    font-size: 1.5rem;
  }
}



/* =========================================================
   RECURSOS GRATIS HÍBRIDO
========================================================= */

.free-hero {
  min-height: 58vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.82)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.free-hero-box {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 2.7rem 2.3rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.free-hero-box h1 {
  color: #61678B;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.free-hero-box p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.free-hero-note {
  color: #836a8d !important;
  font-weight: 700;
  font-style: italic;
}

.free-tools-section {
  background-color: #DEDEEA;
  padding: 2.4rem 1rem 1rem;
}

.free-tools-box {
  max-width: 1020px;
  margin: 0 auto;
}

.free-search-box {
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

.free-search-input {
  width: 100%;
  border: 2px solid rgba(120, 172, 193, 0.65);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-family: 'Mulish', sans-serif;
  color: #444;
  outline: none;
  background-color: rgba(255,255,255,0.82);
}

.free-search-input:focus {
  border-color: #45798e;
  box-shadow: 0 0 0 4px rgba(120, 172, 193, 0.18);
}

.free-filters {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.free-resources-section {
  background-color: #DEDEEA;
  padding: 3rem 1.2rem 4.5rem;
}

.free-resources-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.7rem;
}

.free-resource-card {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(131, 106, 141, 0.10);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.4rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.free-resource-cover img {
  width: 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.free-resource-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background-color: rgba(131, 106, 141, 0.12);
  color: #836a8d;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto;
}

.free-resource-content h2 {
  color: #45798e;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.free-resource-content h3 {
  color: #836a8d;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.free-resource-content p {
  color: #555;
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.free-resource-label {
  display: inline-block;
  background-color: #b9a6cc;
  color: white;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.free-resource-label.reflection {
  background-color: #78ACC1;
}

.free-empty-message {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
  background-color: rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 1.4rem;
  color: #61678B;
  font-weight: 700;
}

.free-publications-section {
  background-color: #ffffff;
  padding: 4.5rem 1.2rem;
}

.free-publications-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.13));
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.free-publications-box h2 {
  color: #61678B;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.free-publications-box p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #444;
  line-height: 1.8;
}

/* filtros */
.filtro {
  border: 2px solid #78ACC1;
  background-color: rgba(255, 255, 255, 0.48);
  color: #45798e;
  font-weight: 800;
  padding: 0.52rem 1.15rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.filtro:hover,
.filtro:focus {
  background-color: #abd0de;
  color: white;
  border-color: #76bad3;
  transform: translateY(-2px);
}

.filtro.active {
  background-color: #78ACC1;
  color: white;
  border-color: #45798e;
}

@media (max-width: 900px) {
  .free-resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .free-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
  }

  .free-hero-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .free-hero-box h1 {
    font-size: 1.8rem;
  }

  .free-resource-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .free-resource-cover img {
    width: 170px;
    height: 215px;
    margin: 0 auto;
  }

  .free-resource-content .btn-principal,
  .free-resource-content .btn-secundario {
    width: 100%;
    text-align: center;
  }

  .free-publications-box {
    padding: 2rem 1.4rem;
  }
}



/* =========================================================
   PUBLICACIONES - CAMINANDO CON PROPÓSITO
========================================================= */

.publications-hero {
  min-height: 58vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.82)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.publications-hero-box {
  max-width: 870px;
  width: 870px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 2.7rem 2.3rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.publications-hero-box h1 {
  color: #61678B;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.publications-hero-box p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.publications-hero-note {
  color: #836a8d !important;
  font-weight: 700;
  font-style: italic;
}

/* BUSCADOR */

.publications-tools-section {
  background-color: #DEDEEA;
  padding: 2.4rem 1rem 1rem;
}

.publications-tools-box {
  max-width: 520px;
  margin: 0 auto;
}

.publications-search-input {
  width: 100%;
  border: 2px solid rgba(120, 172, 193, 0.65);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-family: 'Mulish', sans-serif;
  color: #444;
  outline: none;
  background-color: rgba(255,255,255,0.82);
}

.publications-search-input:focus {
  border-color: #45798e;
  box-shadow: 0 0 0 4px rgba(120, 172, 193, 0.18);
}

/* GRID */

.publications-section {
  background-color: #DEDEEA;
  padding: 3rem 1.2rem 4.5rem;
}

.publications-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.publication-card {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(131, 106, 141, 0.10);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.6rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.publication-cover {
  text-align: center;
}

.publication-cover .portada-montana {
  max-width: 220px;
  box-shadow: none;
  background: linear-gradient(to top, #e6e4f3 0%, rgba(255,255,255,0.6) 55%);
}

.publication-cover .portada-montana img {
  max-width: 170px;
}

.publication-label {
  display: inline-block;
  background-color: #b9a6cc;
  color: white;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.publication-content h2 {
  color: #836a8d;
  font-size: 1.25rem;
  line-height: 1.28;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.publication-content p {
  color: #555;
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.publication-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.publication-details li {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.publication-details i {
  color: #45798e;
}

.publications-empty-message {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  background-color: rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 1.4rem;
  color: #61678B;
  font-weight: 700;
}

/* CTA FINAL */

.publications-final-section {
  background-color: #ffffff;
  padding: 4.5rem 1.2rem;
}

.publications-final-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.13));
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.publications-final-box h2 {
  color: #61678B;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.publications-final-box p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #444;
  line-height: 1.8;
}

.publications-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .publications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .publications-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
  }

  .publications-hero-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .publications-hero-box h1 {
    font-size: 1.8rem;
  }

  .publication-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .publication-cover .portada-montana {
    margin: 0 auto;
  }

  .publication-details li {
    justify-content: center;
  }

  .publication-content .btn-secundario {
    width: 100%;
    text-align: center;
  }

  .publications-final-box {
    padding: 2rem 1.4rem;
  }

  .publications-final-actions a {
    width: 100%;
    text-align: center;
  }
}





/* =========================================================
   BLOG - CAMINANDO CON PROPÓSITO
========================================================= */

.blog-hero {
  min-height: 58vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.82)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.blog-hero-box {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 2.7rem 2.3rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.blog-hero-box h1 {
  color: #61678B;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.blog-hero-box p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.blog-hero-note {
  color: #836a8d !important;
  font-weight: 700;
  font-style: italic;
}

/* BUSCADOR Y FILTROS */

.blog-tools-section {
  background-color: #DEDEEA;
  padding: 2.4rem 1rem 1rem;
}

.blog-tools-box {
  max-width: 1020px;
  margin: 0 auto;
}

.blog-search-box {
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

.blog-search-input {
  width: 100%;
  border: 2px solid rgba(120, 172, 193, 0.65);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-family: 'Mulish', sans-serif;
  color: #444;
  outline: none;
  background-color: rgba(255,255,255,0.82);
}

.blog-search-input:focus {
  border-color: #45798e;
  box-shadow: 0 0 0 4px rgba(120, 172, 193, 0.18);
}

.blog-filters {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* LISTADO */

.blog-list-section {
  background-color: #DEDEEA;
  padding: 3rem 1.2rem 4.5rem;
}

.blog-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}

.blog-post-card {
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(131, 106, 141, 0.10);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.blog-post-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background-color: rgba(131, 106, 141, 0.12);
  color: #836a8d;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin: 0 auto 1.2rem;
}

.blog-post-label {
  display: inline-block;
  background-color: #78ACC1;
  color: white;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.blog-post-content h2 {
  color: #45798e;
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.blog-post-content p {
  color: #555;
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
}

.blog-empty-message {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  background-color: rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 1.4rem;
  color: #61678B;
  font-weight: 700;
}

/* CTA FINAL */

.blog-final-section {
  background-color: #ffffff;
  padding: 4.5rem 1.2rem;
}

.blog-final-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.13));
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.blog-final-box h2 {
  color: #61678B;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-final-box p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #444;
  line-height: 1.8;
}

.blog-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .blog-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
    background-attachment: scroll;
  }

  .blog-hero-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .blog-hero-box h1 {
    font-size: 1.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-final-box {
    padding: 2rem 1.4rem;
  }

  .blog-final-actions a {
    width: 100%;
    text-align: center;
  }
}



/* =========================================================
   ARTÍCULOS DE BLOG - CAMINANDO CON PROPÓSITO
========================================================= */

.blog-article-page {
  background-color: #DEDEEA;
}

/* HERO DEL ARTÍCULO */

.article-hero {
  min-height: 56vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.86)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.article-hero-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 2.8rem 2.4rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.article-category {
  display: inline-block;
  background-color: rgba(120, 172, 193, 0.20);
  color: #45798e;
  border: 1px solid rgba(120, 172, 193, 0.42);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.article-hero h1 {
  color: #61678B;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
}

.article-subtitle {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #836a8d;
  font-size: 0.9rem;
  font-weight: 700;
}

.article-meta i {
  margin-right: 0.35rem;
}

/* LAYOUT */

.article-section {
  padding: 4.5rem 1.2rem;
  background-color: #DEDEEA;
}

.article-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 780px) 300px;
  gap: 2.5rem;
  align-items: start;
}

/* CONTENIDO */

.article-content {
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  padding: 3.2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border: 1px solid rgba(131, 106, 141, 0.10);
}

.article-content p {
  color: #3B3B3B;
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 1.45rem;
}

.article-content em {
  color: #61678B;
  font-weight: 700;
}

.article-content blockquote {
  margin: 2.4rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 5px solid #78ACC1;
  background:
    linear-gradient(135deg, rgba(120,172,193,0.13), rgba(131,106,141,0.08));
  border-radius: 18px;
  color: #61678B;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 800;
  font-style: italic;
}

.article-signature {
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(131, 106, 141, 0.18);
}

.article-signature p {
  color: #836a8d;
  font-weight: 800;
  margin-bottom: 0;
}

/* SIDEBAR */

.article-sidebar {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 1.2rem;
}

.sidebar-card {
  background-color: rgba(255,255,255,0.82);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(131, 106, 141, 0.10);
}

.sidebar-card h3 {
  color: #61678B;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card li {
  margin-bottom: 0.8rem;
}

.sidebar-card a {
  color: #45798e;
  font-weight: 800;
  text-decoration: none;
}

.sidebar-card a:hover {
  color: #836a8d !important;
  text-decoration: underline;
}

.sidebar-card p {
  color: #555;
  line-height: 1.7;
}

.sidebar-soft {
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.13));
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .article-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
    background-attachment: scroll;
  }

  .article-hero-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .article-hero h1 {
    font-size: 1.8rem;
  }

  .article-section {
    padding: 3.5rem 1rem;
  }

  .article-content {
    padding: 2rem 1.35rem;
    border-radius: 22px;
  }

  .article-content p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .article-content blockquote {
    font-size: 1.08rem;
    padding: 1.3rem;
  }
}


/* =========================================================
   CONTACTO - CAMINANDO CON PROPÓSITO
========================================================= */

.contact-hero {
  min-height: 52vh;
  background-image:
    linear-gradient(
      rgba(222, 222, 234, 0.35),
      rgba(222, 222, 234, 0.84)
    ),
    url('/assets/img/fondo-montana.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 1.2rem 3.8rem;
  display: flex;
  align-items: center;
}

.contact-hero-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 26px;
  padding: 2.7rem 2.3rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.contact-hero-box h1 {
  color: #61678B;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.contact-hero-box p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 1rem;
}

.contact-hero-note {
  color: #836a8d !important;
  font-weight: 700;
  font-style: italic;
}

/* FORM SECTION */

.contact-section {
  background-color: #DEDEEA;
  padding: 4.5rem 1.2rem;
}

.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.14));
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.contact-info h2 {
  color: #61678B;
  font-size: 1.8rem;
  line-height: 1.22;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.8rem;
  background-color: rgba(255,255,255,0.72);
  border-radius: 20px;
  padding: 1.4rem;
  border: 1px solid rgba(131,106,141,0.10);
}

.contact-info-card i {
  color: #25D366;
  font-size: 2rem;
  margin-top: 0.2rem;
}

.contact-info-card h3 {
  color: #45798e;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  margin-bottom: 0.8rem;
}

/* FORM CARD */

.contact-form-card {
  background-color: rgba(255,255,255,0.86);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(131,106,141,0.10);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-group label {
  display: block;
  color: #836a8d;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid rgba(120, 172, 193, 0.45);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-family: 'Mulish', sans-serif;
  color: #444;
  background-color: rgba(255,255,255,0.95);
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #45798e;
  box-shadow: 0 0 0 4px rgba(120, 172, 193, 0.18);
}

.form-group textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* CTA FINAL */

.contact-final-section {
  background-color: #ffffff;
  padding: 4.5rem 1.2rem;
}

.contact-final-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(131,106,141,0.10), rgba(120,172,193,0.13));
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.contact-final-box h2 {
  color: #61678B;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-final-box p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #444;
  line-height: 1.8;
}

.contact-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    min-height: auto;
    padding: 5.8rem 1rem 3rem;
    background-attachment: scroll;
  }

  .contact-hero-box {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .contact-hero-box h1,
  .contact-info h2,
  .contact-final-box h2 {
    font-size: 1.8rem;
  }

  .contact-section,
  .contact-final-section {
    padding: 3.5rem 1rem;
  }

  .contact-info,
  .contact-form-card,
  .contact-final-box {
    padding: 1.8rem 1.3rem;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-final-actions a {
    width: 100%;
    text-align: center;
  }
}



