/* ================================================
   HERO - Sofía Macías
   Mejoras: overlay izquierdo + aire + jerarquía
   Abril 2026
   ================================================ */

/* --- 1. OVERLAY: gradiente oscuro de izq. a centro --- */
.acm-hero-item {
  position: relative;
}

.acm-hero-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Asegurar que el texto quede SOBRE el overlay */
.acm-hero-item .container {
  position: relative;
  z-index: 2;
}

/* --- 2. AIRE: más espacio interno al bloque de texto --- */
.hero-content-inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
}

/* --- 3. JERARQUÍA: título más grande y con sombra sutil --- */
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
  line-height: 1.12 !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.2rem !important;
}

/* --- 4. DESCRIPCIÓN: más aire y letra espaciada --- */
.hero-desc {
  font-size: 1rem !important;
  letter-spacing: 1.5px;
  opacity: 0.90;
  margin-bottom: 2rem !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --- 5. BOTÓN: separación superior consistente --- */
.acm-action {
  margin-top: 0.5rem;
}

/* --- 6. RESPONSIVE: ajuste en móvil --- */
@media (max-width: 768px) {
  .acm-hero-item::before {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.20) 100%
    );
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  .hero-content-inner {
    padding-left: 0;
  }
}


/* === SECCIÓN FRASE === */
.seccion-frase {
  //background-color: #4E0A0B;
  padding: 80px 40px;
  text-align: center;
}

.seccion-frase blockquote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

/* Comillas decorativas */
.seccion-frase blockquote::before {
  content: "\201C";
  font-size: 8rem;
  color: #E38792;
  line-height: 0;
  position: absolute;
  top: 40px;
  left: -20px;
  opacity: 0.5;
  font-family: 'Libre Baskerville', serif;
}

/* Texto de la frase */
.seccion-frase blockquote p {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-style: italic;
  color: #F2EEE8;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Línea decorativa */
.seccion-frase .linea-decorativa {
  width: 60px;
  height: 2px;
  background-color: #E38792;
  margin: 0 auto 16px;
}

/* Atribución */
.seccion-frase cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71;
  font-style: normal;
}



/* ===== FOOTER NAV ===== */
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* Separador · automático entre items */
.footer-nav__item + .footer-nav__item::before {
  content: "·";
  margin: 0 10px;
  opacity: 0.35;
}

.footer-nav__item a {
  font-size: 0.85rem;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease;
  color: inherit;
}

.footer-nav__item a:hover {
  opacity: 1;
}

/* Página activa */
.footer-nav__item.active a,
.footer-nav__item.current a {
  opacity: 1;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.t4-footnav .t4-row > div, .t4-footnav .row > div {
	 padding-top: 0rem; 
	 padding-bottom: 0rem; 
}

/* ============================================
   SECCIÓN OBRAS — Sofía Macías
   Módulo: mod_articles_category
   Layout: grid-layout-3cols.php
   ============================================ */

/* Grid de 3 columnas */
.sm-obras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

/* Tarjeta individual */
.sm-obra-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sm-obra-card:hover {
  box-shadow: 0 8px 28px rgba(227, 135, 146, 0.28);
  transform: translateY(-5px);
}

/* Imagen */
.sm-obra-imagen {
  display: block;
  overflow: hidden;
}

.sm-obra-imagen img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sm-obra-card:hover .sm-obra-imagen img {
  transform: scale(1.04);
}

/* Contenido */
.sm-obra-contenido {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Etiqueta / categoría */
.sm-obra-etiqueta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71;
  display: block;
  margin-bottom: 8px;
}

/* Título de la obra */
.sm-obra-titulo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.sm-obra-titulo a {
  color: #4E0A0B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sm-obra-titulo a:hover {
  color: #E38792;
}

/* Fecha */
.sm-obra-fecha {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: #aaa;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

/* Descripción / introtext */
.sm-obra-descripcion {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* Botón "Leer más" */
.sm-obra-btn {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #F2EEE8;
  background-color: #4E0A0B;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.sm-obra-btn:hover {
  background-color: #E38792;
  color: #FFFFFF;
}

/* ── Responsive ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .sm-obras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sm-obras-grid {
    grid-template-columns: 1fr;
  }
}


/* === FICHA TÉCNICA DE LA OBRA === */
.obra-ficha-tecnica {
  background-color: #4E0A0B;
  border-radius: 6px;
  color: #F2EEE8;
}
.obra-ficha-tecnica .ficha-titulo {
  color: #E38792;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(242,238,232,0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.obra-ficha-tecnica .fields-container {
  list-style: none;
  padding: 0;
  margin: 0;
}
.obra-ficha-tecnica .field-entry {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(242,238,232,0.1);
  font-size: 0.9rem;
  line-height: 1.5;
}
.obra-ficha-tecnica .field-entry:last-child {
  border-bottom: none;
}
.obra-ficha-tecnica .field-label {
  color: #E38792;
  font-weight: 600;
}
.obra-ficha-tecnica .field-value {
  color: #F2EEE8;
}
.obra-ficha-tecnica .field-value p {
  margin: 0;
  color: #F2EEE8;
}


.autor-bloque .author-block {
  border: 1px solid rgba(78,10,11,0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

}


.item-page .author-block.author-block-post-detail {
	background: #fff;
	display: block;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0;
	padding: 2rem;
}

/* ================================================
   CARDS DE OBRAS — Listado (category blog/magazine)
   ================================================ */

/* Contenedor de la card */
.obra-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(78, 10, 11, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.obra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(78, 10, 11, 0.15);
}

/* Imagen de portada */
.obra-card .item-image,
.obra-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Cuerpo de la card */
.obra-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Badge de género */
.obra-genero-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4E0A0B;
  background-color: rgba(78, 10, 11, 0.07);
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 0.6rem;
}

/* Título de la obra */
.obra-card .page-header h2,
.obra-card .blog-item-title a,
.obra-card h2 a {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  color: #2a2a2a;
  text-decoration: none;
  line-height: 1.4;
}

.obra-card h2 a:hover {
  color: #4E0A0B;
}

/* Sinopsis corta */
.obra-card-intro {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-top: 0.5rem;
  flex: 1;

  /* Limitar a 3 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer de la card con botón */
.obra-card-footer {
  margin-top: 1.25rem;
}

/* Botón "Ver obra" */
.obra-btn-ver {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4E0A0B;
  border: 1.5px solid #4E0A0B;
  border-radius: 3px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.obra-btn-ver:hover {
  background-color: #4E0A0B;
  color: #F2EEE8;
  text-decoration: none;
}


/* Fila superior: solo categoría */
.obra-card-meta-top {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}

/* Etiqueta de categoría */
.obra-categoria-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4E0A0B;
}

/* Badge de género — debajo de la categoría */
.obra-genero-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9DAD71;
  margin-bottom: 0.5rem;
}

/* Quitar el pseudo-elemento separador · que ya no aplica */
.obra-card-meta-top .obra-categoria-label + .obra-genero-badge::before {
  content: none;
}


/* Título en el módulo (h3) — igual que h2 del listado */
.obra-card h3.obra-card-titulo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.obra-card h3.obra-card-titulo a {
  color: #2a2a2a;
  text-decoration: none;
}

.obra-card h3.obra-card-titulo a:hover {
  color: #4E0A0B;
}


/* ============================================
   PÁGINA SOBRE MÍ — SOFÍA MACÍAS
   v2.0 — Mayo 2026
   ============================================ */

/* --- HERO --- */
.sm-hero {
  background-color: #4E0A0B;
  padding: 70px 40px 60px;
  text-align: center;
}
.sm-hero-subtitulo {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E38792;
  margin: 0;
}

/* --- PRESENTACIÓN --- */
.sm-presentacion {
  background-color: #F2EEE8;
  padding: 70px 20px;
}
.sm-presentacion-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: stretch; /* MODIFICADO: era flex-start, ahora stretch para igualar alturas */
}
/* Forzar que la foto ocupe exactamente el 100% del alto del contenedor */
/* --- FOTO: versión corregida --- */
.sm-foto-col {
  flex: 0 0 38%;
  display: block;        /* CAMBIADO: era flex */
  align-self: flex-start; /* CAMBIADO: que no se estire */
  background-color: #ffffff;
}

.sm-foto {
  width: 100%;
  height: auto;          /* CAMBIADO: altura natural de la imagen */
  max-height: 520px;     /* tope máximo */
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
  box-shadow: 4px 4px 20px rgba(78,10,11,0.15);
}


.sm-bio-col {
  flex: 1;
}
.sm-origen {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71;
  margin-bottom: 1.2rem;
}
.sm-bio-col p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;   /* MODIFICADO: era 1rem, más legible */
  line-height: 1.9;     /* MODIFICADO: era 1.8, más aire entre líneas */
  color: #3a3a3a;
  margin-bottom: 1rem;
}

/* --- TRAYECTORIA --- */
.sm-trayectoria {
  background-color: #fff;
  padding: 70px 20px;
}
.sm-seccion-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sm-seccion-titulo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  color: #4E0A0B;
  margin-bottom: 0.5rem;
  text-align: center;
}
.sm-linea-deco {
  width: 50px;
  height: 2px;
  background-color: #E38792;
  margin: 0 auto 3rem;
}
.sm-obras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sm-obra-card {
  background-color: #F2EEE8;
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  position: relative;
  border-top: 3px solid #E38792;
}
.sm-obra-card--destacada {
  border-top-color: #4E0A0B;
  background-color: #fdf8f5;
}
.sm-obra-badge {
  display: inline-block;
  background-color: #4E0A0B;
  color: #F2EEE8;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.sm-obra-anio {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #E38792;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sm-obra-titulo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #4E0A0B;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.sm-obra-dir {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #9DAD71;
  margin-bottom: 0.4rem;
  font-style: italic;
}
.sm-obra-dato {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

/* --- LOGROS (CINE + PREMIOS) --- */
.sm-logros {
  background-color: #4E0A0B;
  padding: 70px 20px;
}
.sm-logros-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.sm-logro-bloque {
  flex: 1;
  text-align: center;
  padding: 20px 40px;
}
.sm-logro-separador {
  width: 1px;
  background-color: rgba(242,238,232,0.2);
  margin: 10px 0;
}
.sm-logro-icono {
  font-size: 2rem;
  color: #E38792;        /* MODIFICADO: color Cotton Candy en lugar de emoji */
  margin-bottom: 0.75rem; /* MODIFICADO: era 0.5rem */
  display: block;        /* MODIFICADO: para centrar correctamente el icono FA */
  text-align: center;
}
.sm-logro-titulo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  color: #E38792;
  margin-bottom: 1rem;
}
.sm-logro-obra {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #F2EEE8;
  margin-bottom: 0.5rem;
}
.sm-logro-detalle {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: rgba(242,238,232,0.75);
  line-height: 1.7;
}

/* --- FRASE + CTA --- */
.sm-cierre {
  background-color: #F2EEE8;
  padding: 80px 20px;
  text-align: center;
}
.sm-cita {
  max-width: 750px;
  margin: 0 auto 2.5rem;
  border: none;
  padding: 0;
}
.sm-cita p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #4E0A0B;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.sm-cita-linea {
  width: 50px;
  height: 2px;
  background-color: #E38792;
  margin: 0 auto 1rem;
}
.sm-cita cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71;
  font-style: normal;
}
.sm-btn-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 52px;       /* MODIFICADO: era 12px 36px, más grande */
  border: 2px solid #4E0A0B;
  color: #4E0A0B;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;       /* MODIFICADO: era 0.9rem */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sm-btn-cta:hover {
  background-color: #4E0A0B;
  color: #F2EEE8;
  text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .sm-presentacion-inner {
    flex-direction: column;
  }
  .sm-foto-col {
    flex: 0 0 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .sm-foto {
    min-height: 300px; /* MODIFICADO: ajuste para móvil */
  }
  .sm-obras-grid {
    grid-template-columns: 1fr;
  }
  .sm-logros-grid {
    flex-direction: column;
  }
  .sm-logro-separador {
    width: 50px;
    height: 1px;
    margin: 10px auto;
  }
  .sm-cita p {
    font-size: 1.1rem;
  }
}


/* ============================================
   CONTACTO — ESTILOS PERSONALIZADOS
   Mayo 2026
   ============================================ */

/* --- OCULTAR título h2 duplicado ("Contacto") --- */
/* Ya aparece en el masthead, no se necesita dentro del componente */
.contact .page-header {
  display: none;
}

/* --- COLUMNA IZQUIERDA: información --- */
.plain-contact-infor {
  padding-right: 2rem;
}

/* --- TÍTULO "Información general" → reemplazar estilo genérico --- */
.contact-miscinfo h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9DAD71; /* Khaki */
  margin-bottom: 1.2rem;
}

/* --- TEXTO introductorio --- */
.contact-misc p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #4E0A0B; /* Garnet */
}

/* --- LÍNEA decorativa debajo del texto --- */
.contact-miscinfo {
  border-bottom: 1px solid #E38792; /* Cotton Candy */
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

/* --- EMAIL: etiqueta "Email" --- */
.contact-address dt span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71; /* Khaki */
}

/* --- EMAIL: valor --- */
.contact-address dd {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4E0A0B;
}

.contact-address dd a,
.contact-emailto a {
  color: #4E0A0B;
  text-decoration: none;
  border-bottom: 1px solid #E38792;
  transition: color 0.2s ease;
}

.contact-address dd a:hover,
.contact-emailto a:hover {
  color: #E38792;
}

/* --- FOLLOW: etiqueta --- */
.contact-link dt {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9DAD71;
  padding-top: 0.4rem;
}

/* --- REDES SOCIALES: íconos --- */
.com-contact__links .nav-tabs {
  border: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.com-contact__links .nav-tabs li {
  list-style: none;
}

.com-contact__links .nav-tabs li a {
  font-size: 1.4rem;
  color: #4E0A0B;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.com-contact__links .nav-tabs li a:hover {
  color: #E38792; /* Cotton Candy */
  transform: translateY(-2px);
}

/* --- FORMULARIO: campos --- */
.contact-form .form-control {
  border: 1px solid #d9d0c8;
  border-radius: 3px;
  background-color: #ffffff;
  color: #4E0A0B;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #E38792; /* Cotton Candy al focus */
  box-shadow: 0 0 0 3px rgba(227, 135, 146, 0.15);
  outline: none;
}

/* --- FORMULARIO: labels --- */
.contact-form .control-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4E0A0B;
  margin-bottom: 0.4rem;
}

/* --- FORMULARIO: asterisco requerido --- */
.contact-form .star {
  color: #E38792;
}

/* --- FORMULARIO: botón SUBMIT --- */
.contact-form .btn-primary {
  background-color: #4E0A0B !important;
  border-color: #4E0A0B !important;
  color: #F2EEE8 !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 48px;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form .btn-primary:hover {
  background-color: #E38792 !important;
  border-color: #E38792 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* --- CHECKBOX "Envíeme una copia" --- */
.email-copy .form-check-input:checked {
  background-color: #4E0A0B;
  border-color: #4E0A0B;
}

.email-copy label {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #4E0A0B;
}

/* --- RESPONSIVE: apilar columnas en móvil --- */
@media (max-width: 767px) {
  .plain-contact-infor {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}


/* ============================================
   MENÚ OFFCANVAS / MOBILE — VERSIÓN LIMPIA
   Mayo 2026
   ============================================ */

/* Forzar lista en columna vertical */
.t4-offcanvas .footer-nav__list {
  flex-direction: column !important;
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
}

/* Cada ítem ocupa su propia línea */
.t4-offcanvas .footer-nav__item {
  display: block !important;
  width: 100% !important;
}

/* Quitar puntos/separadores entre ítems */
.t4-offcanvas .footer-nav__item::before,
.t4-offcanvas .footer-nav__item::after {
  display: none !important;
  content: none !important;
}

