/* =================================================================
   MMCL | Boutique Lingüística — CSS fiel al prototipo aprobado
   ================================================================= */

/* ── TIPOGRAFÍA MARCA — Azo Sans (auto-alojada) ─────────────────
   Obtén la licencia en: https://www.type-together.com/azo-sans
   Coloca los archivos .woff2 en: assets/fonts/
   Mientras tanto, Nunito Sans (Google Fonts) actúa como respaldo.
   ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Azo Sans';
  src: url('../fonts/AzoSans-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Azo Sans';
  src: url('../fonts/AzoSans-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Azo Sans';
  src: url('../fonts/AzoSans-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Azo Sans';
  src: url('../fonts/AzoSans-LightItalic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}

/* ── RESET TEMA PADRE (Twenty Twenty-One) ───────────────────────
   Elimina el fondo aguamarina/turquesa que filtra del tema padre.
   ─────────────────────────────────────────────────────────────── */
:root {
  --global--color--background:    #2C2233;
  --global--color--cyan-lightest: transparent;
  --global--color--cyan:          transparent;
  --global--color--foreground:    #ECBEC0;
}
html { background-color: #2C2233; }
body { background-color: #2C2233 !important; }
body:not(.is-front-page) { background-color: #F9F4F5 !important; }
.wp-site-blocks, #page, #content,
.site-content, .entry-content,
.entry-summary, .site-main:not(.front-page) {
  background: transparent !important;
}
/* Ocultar encabezado propio del tema padre si aparece */
#masthead.site-header:not(#site-header) { display: none !important; }

/* Neutralizar estilos de button del tema padre dentro del header y nav */
#site-header button,
.site-header button,
.nav-links button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  box-shadow: none;
  text-transform: none;
}
/* Excepción: el botón hamburguesa y el lang-btn tienen sus propios estilos */
#site-header button.menu-toggle,
.site-header button.menu-toggle { background: none; border: none; }
/* El lang-btn recupera sus estilos con !important en la regla siguiente */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --dark:       #2C2233;
  --dark-light: #33273B;
  --pink:       #ECBEC0;
  --rose:       #C37581;
  --burgundy:   #8C3E4D;
  --mauve:      #DED8E2;
  --mauve-dark: #9D8BA9;
  --black:      #0F0C12;
  --bg-light:   #F9F4F5;
  --text-dark:  #0F0C12;
  --text-muted: #6B5B6D;
  /* Lucida Bright = sistema (Mac/Win). Azo Sans = auto-alojada.
     Nunito Sans = respaldo Google Fonts. */
  --ff-serif:   'Lucida Bright', 'Lucida Std', Georgia, 'Times New Roman', serif;
  --ff-sans:    'Azo Sans', 'Nunito Sans', 'Open Sans', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 8px rgba(44,34,51,.12);
  --shadow-md:  0 8px 32px rgba(44,34,51,.2);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.75;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
/* Header y footer SIEMPRE al ancho completo de pantalla — gana al tema padre */
.site-header > .container,
.site-footer > .container,
header.site-header .container,
footer.site-footer .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
@media (max-width: 768px) {
  .site-header > .container,
  .site-footer > .container,
  header.site-header .container,
  footer.site-footer .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}
section { padding: 7rem 0; }

/* ── Section headers ─────────────────────────────────────────── */
.s-label {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: .6rem;
}
.s-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.s-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}
.on-dark .s-title { color: var(--pink); }
.on-dark .s-sub   { color: var(--mauve); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  font-family: var(--ff-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--pink);
  color: var(--dark);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: rgba(236,190,192,.35);
}
.btn-outline:hover {
  border-color: var(--pink);
  background: rgba(236,190,192,.07);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(44,34,51,.35);
}
.btn-outline-dark:hover {
  border-color: var(--dark);
  background: rgba(44,34,51,.07);
  transform: translateY(-2px);
}

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.3rem 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: var(--shadow-md);
  padding: .9rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo-text {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: .05em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-sub {
  font-size: .58rem;
  font-family: var(--ff-sans);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mauve);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width .3s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--pink) !important;
  color: var(--dark) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--rose) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Language switcher — botones separados, con !important para vencer al tema padre */
.mmcl-lang-switcher,
.lang-switcher {
  display: flex !important;
  gap: .4rem !important;
  margin-left: .75rem !important;
  list-style: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  overflow: visible !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
/* Botones de idioma — IDÉNTICOS al .btn-primary ("Escríbeme ahora")
   pero más compactos para el header. */
.lang-switcher .lang-btn,
.nav-links .lang-btn,
button.lang-btn,
.mmcl-lang-switcher li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 2.5rem !important;
  background: var(--pink) !important;
  border: 2px solid var(--pink) !important;
  border-radius: 2px !important;
  color: var(--dark) !important;
  font-family: var(--ff-sans) !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: .42rem .85rem !important;
  cursor: pointer !important;
  transition: all .3s var(--ease) !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: 0 2px 8px rgba(236,190,192,.18) !important;
}
.lang-switcher .lang-btn:hover,
.nav-links .lang-btn:hover,
button.lang-btn:hover,
.mmcl-lang-switcher li a:hover {
  background: var(--rose) !important;
  border-color: var(--rose) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}
/* Activo: ligeramente diferenciado (más oscuro/burgundy) */
.lang-switcher .lang-btn.active,
.nav-links .lang-btn.active,
button.lang-btn.active,
.mmcl-lang-switcher li.current-lang a {
  background: var(--burgundy) !important;
  border-color: var(--burgundy) !important;
  color: var(--pink) !important;
  box-shadow: 0 2px 12px rgba(140,62,77,.4) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.menu-toggle span {
  width: 24px; height: 1.5px;
  background: var(--pink);
  display: block;
  transition: all .3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 6rem;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--mauve); }

.hero-lang-badges {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.lang-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  border: 1px solid rgba(236,190,192,.35);
  color: var(--pink);
  padding: .28rem .7rem;
  border-radius: 2px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--mauve);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual frame — llena la columna, flotante con el scroll */
.hero-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: sticky;
  top: 6rem;
  align-self: start;
}
.hero-frame {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 480px;
  background: transparent;       /* fondo transparente */
  border: none;                  /* sin borde */
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  box-shadow: none;              /* sin sombra */
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-frame::before { display: none; }  /* quitar borde interior decorativo */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-frame { animation: none; }
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(236,190,192,.08);
  border-radius: 1px;
}
.hero-frame-inner { text-align: center; color: var(--mauve-dark); }
.hero-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 2px;
}
.monogram {
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: rgba(236,190,192,.12);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.frame-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--mauve-dark);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  text-decoration: none;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--mauve-dark), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── VALUE PROPS ─────────────────────────────────────────────── */
.value-props {
  background: var(--bg-light);
  padding: 5rem 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--pink);
}
.value-icon { font-size: 1.9rem; margin-bottom: 1.25rem; }
.value-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: .75rem;
}
.value-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(236,190,192,.06);
}
.service-card {
  background: var(--dark);
  padding: 2.75rem 2.5rem;
  transition: background .3s;
}
.service-card:hover { background: var(--dark-light); }
.service-num {
  font-family: var(--ff-serif);
  font-size: .75rem;
  color: var(--rose);
  letter-spacing: .15em;
  font-style: italic;
  display: block;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.35rem;
  color: var(--pink);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--mauve);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}
.service-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.s-tag {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--rose);
  border: 1px solid rgba(195,117,129,.32);
  padding: .2rem .55rem;
  border-radius: 2px;
}

.services-note {
  padding: 2rem 2.5rem;
  border: 1px solid rgba(236,190,192,.12);
  border-radius: 3px;
  margin-top: 2px;
}
.services-note p {
  color: var(--mauve);
  font-size: .88rem;
  font-style: italic;
  line-height: 1.75;
}
.services-note strong { color: var(--pink); }
.services-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-light);
  border: 1px solid var(--mauve);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve-dark);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 78%;
  height: 78%;
  border: 2px solid var(--pink);
  border-radius: 2px;
  z-index: -1;
}
.photo-ph { text-align: center; }
.photo-ph span {
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  color: rgba(140,62,77,.18);
  display: block;
  margin-bottom: .5rem;
}
.photo-ph p { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }

/* Botones de descarga CV — bajo la foto de Sobre mí */
.cv-download-wrap {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 1;
}
.btn-cv {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 2px;
  padding: .6rem 1rem;
  text-decoration: none;
  transition: all .25s;
  line-height: 1.2;
}
.btn-cv:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-cv svg { flex-shrink: 0; }

.about-text p {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* Timeline */
.timeline-block { margin-top: 3rem; }
.timeline-block h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--mauve);
}
.t-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(222,216,226,.5);
}
.t-item:last-child { border-bottom: none; }
.t-year {
  font-family: var(--ff-serif);
  font-size: .8rem;
  color: var(--rose);
  font-weight: 600;
  padding-top: .15rem;
}
.t-body h4 {
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}
.t-body p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

/* Languages grid */
.langs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.lang-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-light);
  border-left: 3px solid var(--pink);
}
.lang-card h4 { font-size: 1.15rem; color: var(--dark); margin-bottom: .2rem; }
.lang-lvl {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: .6rem;
}
.lang-card p { font-size: .84rem; color: var(--text-muted); }

/* ── SPECIALTIES ─────────────────────────────────────────────── */
.specialties { background: var(--dark); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.spec-card {
  padding: 2.5rem;
  border: 1px solid rgba(236,190,192,.1);
  border-radius: 3px;
  transition: all .3s;
}
.spec-card:hover {
  border-color: rgba(236,190,192,.28);
  background: rgba(236,190,192,.025);
}
.spec-num {
  font-family: var(--ff-serif);
  font-size: 2.75rem;
  color: rgba(236,190,192,.06);
  display: block;
  line-height: 1;
  margin-bottom: -.35rem;
}
.spec-card h3 { font-size: 1.3rem; color: var(--pink); margin-bottom: 1rem; }
.spec-card p  { font-size: .89rem; color: var(--mauve); line-height: 1.78; margin-bottom: 1rem; }
.spec-list li {
  font-size: .84rem;
  color: var(--mauve-dark);
  padding: .28rem 0 .28rem 1.1rem;
  position: relative;
}
.spec-list li::before { content: '—'; position: absolute; left: 0; color: var(--rose); }

/* ── PORTFOLIO ───────────────────────────────────────────────── */
.portfolio { background: var(--bg-light); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.port-card {
  background: #fff;
  border: 1px solid var(--mauve);
  border-radius: 3px;
  overflow: hidden;
  transition: all .35s;
}
.port-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.port-thumb {
  background: var(--dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.25rem;
}
.port-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.port-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--pink);
  color: var(--dark);
  padding: .22rem .6rem;
  border-radius: 2px;
  z-index: 1;
}
.port-status {
  position: absolute;
  bottom: .75rem; right: .75rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(44,34,51,.85);
  padding: .2rem .5rem;
  border-radius: 2px;
  z-index: 1;
}
.port-body { padding: 1.5rem; }
.port-cat {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .45rem;
}
.port-body h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: .45rem; }
.port-body p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* Portfolio — overlay de detalles al hacer hover */
.port-card { position: relative; }

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 35, .96);
  backdrop-filter: blur(3px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  transform: translateY(102%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 5;
}
.port-card:hover .port-overlay,
.port-card:focus-within .port-overlay {
  transform: translateY(0);
}
.port-overlay-pair {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  background: var(--pink);
  color: var(--dark);
  padding: .2rem .6rem;
  border-radius: 2px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: .3rem;
}
.port-overlay-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
}
.port-overlay h4 {
  font-size: 1.05rem;
  color: var(--pink);
  line-height: 1.25;
}
.port-overlay p {
  font-size: .83rem;
  color: var(--mauve);
  line-height: 1.68;
  flex: 1;
}
.port-overlay-link {
  font-family: var(--ff-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .22s;
  margin-top: .4rem;
  text-decoration: none;
  align-self: flex-start;
}
.port-overlay-link:hover { color: var(--pink); }
.port-overlay-status {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-section { background: var(--bg-light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--mauve);
  border-radius: 3px;
  overflow: hidden;
  transition: all .35s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-thumb {
  background: var(--dark);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-lang-badge {
  position: absolute;
  top: .6rem; left: .6rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--pink);
  color: var(--dark);
  padding: .18rem .5rem;
  border-radius: 2px;
  z-index: 1;
}
.blog-body { padding: 1.4rem; }
.blog-date {
  font-size: .65rem;
  color: var(--mauve-dark);
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.blog-body h4 { font-size: 1rem; color: var(--dark); margin-bottom: .4rem; }
.blog-body p  { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: .8rem; }
.blog-more {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  transition: color .25s;
}
.blog-more:hover { color: var(--pink); }

.blog-wp-note {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(195,117,129,.35);
  border-radius: 3px;
}
.blog-wp-note p  { font-size: .85rem; color: var(--text-muted); }
.blog-wp-note strong { color: var(--dark); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}
.c-items { display: flex; flex-direction: column; gap: 1.5rem; }
.c-item  { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon  {
  width: 2.2rem; height: 2.2rem;
  background: rgba(236,190,192,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .88rem;
}
.c-text h4 {
  font-family: var(--ff-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .2rem;
}
.c-text a, .c-text p {
  font-size: .9rem;
  color: var(--mauve);
  line-height: 1.6;
  transition: color .25s;
}
.c-text a:hover { color: var(--pink); }

/* Social buttons */
.social-row  { display: flex; gap: .65rem; margin-top: 2.5rem; }
.soc-btn     {
  width: 2.4rem; height: 2.4rem;
  border: 1px solid rgba(236,190,192,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mauve);
  transition: all .3s;
  text-decoration: none;
}
.soc-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(236,190,192,.06);
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: .38rem; }
.fg label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}
/* Campos del formulario — !important para vencer al tema padre */
.fg input, .fg select, .fg textarea,
.wpcf7-text, .wpcf7-email, .wpcf7-select,
.wpcf7-textarea, .wpcf7-number, .wpcf7-date {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(236,190,192,.18) !important;
  border-radius: 2px !important;
  padding: .78rem 1rem !important;
  color: var(--mauve) !important;
  font-family: var(--ff-sans) !important;
  font-size: .88rem !important;
  outline: none !important;
  width: 100% !important;
  transition: border-color .3s, color .3s !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
.fg input:focus, .fg select:focus, .fg textarea:focus,
.wpcf7-text:focus, .wpcf7-email:focus, .wpcf7-select:focus,
.wpcf7-textarea:focus { border-color: var(--pink) !important; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--mauve-dark) !important; opacity: .55 !important; }
.fg select option { background: var(--dark-light) !important; color: var(--mauve) !important; }
.fg textarea { resize: vertical !important; min-height: 115px !important; }
/* Flecha personalizada para los selects (porque appearance:none la quitó) */
.fg select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ECBEC0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

/* Estado "lleno" — input/textarea/select con valor: texto más nítido */
.fg input:not(:placeholder-shown):not(:focus),
.fg textarea:not(:placeholder-shown):not(:focus) {
  color: var(--pink) !important;
  border-color: rgba(236,190,192,.4) !important;
}
/* Selects: cuando NO tienen su option vacío seleccionado, muestran texto en rosa */
.fg select { color: var(--mauve-dark) !important; }
.fg select:valid,
.fg select.has-value { color: var(--pink) !important; }
.fg select:focus      { color: var(--pink) !important; }

/* Indicador de campo obligatorio */
.req { color: var(--rose); font-size: .75rem; margin-left: .2rem; }

/* Mensaje de error inline */
.field-err {
  font-size: .72rem;
  color: #e07070;
  min-height: 1em;
  display: block;
}
.fg.has-error input,
.fg.has-error select,
.fg.has-error textarea { border-color: #e07070 !important; }

/* Volumen — input estrecho + selector de unidad alineados horizontalmente */
.vol-wrap {
  display: flex;
  gap: .6rem;
  width: 100%;
  align-items: stretch;
}
.vol-wrap input {
  flex: 0 0 auto;
  width: 8rem !important;          /* recuadro angosto solo para números */
  min-width: 0;
}
.vol-wrap .vol-unit {
  flex: 0 0 auto;
  width: 10rem !important;
  min-width: 0;
}

/* Etiqueta con icono de información alineado a la derecha del título */
.label-with-info {
  display: flex !important;
  align-items: center;
  gap: .5rem;
  flex-direction: row !important;
  text-transform: uppercase;
}
.label-with-info > span:first-child { letter-spacing: .16em; }

/* Icono de información — del mismo color que la etiqueta (rose) */
.info-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--rose) !important;
  cursor: help;
  position: relative;
  border-radius: 50%;
  transition: color .2s, transform .2s;
  /* Anular cualquier estilo de botón heredado del tema padre */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  min-width: 0 !important;
  flex: 0 0 auto;
}
.info-icon:hover,
.info-icon:focus { color: var(--pink); transform: scale(1.1); outline: none; }
.info-icon svg { display: block; }

/* Tooltip — aparece sobre hover/focus por CSS puro */
.info-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + .5rem);
  transform: translateX(-50%) translateY(4px);
  background: var(--dark-light);
  border: 1px solid rgba(236,190,192,.2);
  border-radius: 3px;
  padding: .6rem .85rem;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mauve);
  white-space: normal;
  width: max-content;
  max-width: 260px;
  z-index: 50;
  box-shadow: var(--shadow-md);
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.info-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark-light);
}
.info-icon:hover .info-tooltip,
.info-icon:focus .info-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Campo condicional "Otro" — oculto hasta que se seleccione "otro" */
.otro-field {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s var(--ease), opacity .3s var(--ease), margin .3s;
  margin-top: 0 !important;
}
.otro-field.visible {
  max-height: 6rem;
  opacity: 1;
  margin-top: .35rem !important;
}

/* Portfolio — botón "Ver todo" */
.port-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.form-note {
  font-size: .79rem;
  color: var(--mauve-dark);
  font-style: italic;
}

/* CF7 submit */
.wpcf7-submit, .contact-form button[type="submit"] {
  font-family: var(--ff-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  border: 2px solid var(--pink);
  background: var(--pink);
  color: var(--dark);
}
.wpcf7-submit:hover, .contact-form button[type="submit"]:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* CF7 messages */
.wpcf7-response-output {
  padding: .75rem 1rem;
  border-radius: 2px;
  font-size: .85rem;
  margin-top: .5rem !important;
  border-width: 1px !important;
}
.wpcf7-mail-sent-ok  { background: rgba(37,211,102,.08); color: #1a7a42; border-color: #25D366 !important; }
.wpcf7-validation-errors { background: rgba(229,62,62,.06); color: #c53030; border-color: #e53e3e !important; }
.wpcf7-not-valid-tip { font-size: .72rem; color: #e53e3e; margin-top: .2rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(236,190,192,.1);
}
/* Logo imagen en header y footer */
.site-logo-img .custom-logo-link,
.site-logo-img a { display: block; line-height: 1; }
.site-logo-img img,
.custom-logo { max-height: 52px; width: auto; display: block; }
.footer-logo-img { display: block; margin-bottom: .75rem; }
.footer-logo-img img { max-height: 48px; width: auto; }
.footer-logo-wp .custom-logo-link { display: block; }
.footer-logo-wp img { max-height: 48px; width: auto; opacity: .9; }

.footer-brand p {
  font-size: .84rem;
  color: var(--mauve-dark);
  line-height: 1.75;
  margin-top: 1rem;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: .83rem;
  color: var(--mauve-dark);
  margin-bottom: .45rem;
  transition: color .25s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--mauve-dark);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .78rem;
  color: var(--mauve-dark);
  transition: color .25s;
}
.footer-legal a:hover { color: var(--pink); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #25D366;
  color: #fff;
  padding: .72rem 1.2rem .72rem .85rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  color: #fff;
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }

/* ── CHERRY BLOSSOM CANVAS ───────────────────────────────────── */
#cherry-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal   { transform: translateY(28px); }
.reveal-l { transform: translateX(-28px); }
.reveal-r { transform: translateX(28px); }
.reveal.vis, .reveal-l.vis, .reveal-r.vis { opacity: 1; transform: none; }

/* ── SINGLE POST / PAGE ──────────────────────────────────────── */
.single-wrap {
  background: #fff;
  padding-block: 6rem;
  min-height: 60vh;
}
.single-wrap .container { max-width: 760px; }
.post-header { margin-bottom: 2.5rem; }
.post-header .post-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: .5rem;
}
.post-header h1 { color: var(--dark); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.post-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--mauve);
}
.post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.post-content h2, .post-content h3 { color: var(--dark); margin-block: 1.5rem .75rem; }
.post-content a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.post-content blockquote {
  border-left: 3px solid var(--rose);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0;
}
.post-featured-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Archive page */
.archive-wrap { background: var(--bg-light); padding-block: 4rem; }
.archive-header {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
}
.archive-header h1 { color: var(--pink); }

/* Pagination */
.pagination { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; padding-top: 3rem; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(44,34,51,.12);
  color: var(--dark);
  transition: all .25s;
}
.pagination .current, .pagination a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--mauve);
}

/* 404 */
.error-404 { background: var(--bg-light); padding: 8rem 0; text-align: center; min-height: 80vh; display: flex; align-items: center; }
.error-404 .error-num { font-family: var(--ff-serif); font-size: 8rem; color: var(--rose); line-height: 1; display: block; }
.error-404 h1 { color: var(--dark); margin-bottom: 1rem; }
.error-404 p  { color: var(--text-muted); margin-bottom: 2rem; }

/* Accessibility */
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; align-items: center; }
  /* Hero image visible on mobile — below the text, smaller frame */
  .hero-visual {
    display: flex;
    position: static;
    justify-content: center;
    margin-top: 2.5rem;
  }
  .hero-frame { max-width: 300px; min-height: 360px; margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-btns, .hero-lang-badges { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  /* Sobre mí — foto + botones CV visibles en móvil */
  .about-img-wrap { display: block; max-width: 320px; margin: 0 auto 2.5rem; }
  .about-img       { aspect-ratio: 3/4; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .services-grid, .spec-grid, .langs-grid, .value-grid, .blog-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.15rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 500px) {
  .port-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   AÑADIDOS RECIENTES — services rates, CV apilados, contact reorder,
   file upload, popup, cookie banner, share buttons, blog/comments,
   powered by One Ingot.
   ================================================================= */

/* Services — frase de tarifas separada */
.services-rates {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--mauve);
  font-style: italic;
  line-height: 1.65;
  max-width: 720px;
}

/* CVs apilados (uno debajo del otro) */
.cv-download-wrap.cv-stacked { flex-direction: column; gap: .6rem; align-items: stretch; }
.cv-download-wrap.cv-stacked .btn-cv { width: 100%; justify-content: center; }

/* CONTACT — invertir grid: formulario izquierda, info derecha */
.contact-grid--form-left { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 1024px) {
  .contact-grid--form-left { grid-template-columns: 1fr; gap: 3rem; }
}

/* Confidencialidad bajo "Volumen aproximado" */
.vol-confid {
  font-size: .72rem;
  color: var(--mauve-dark);
  font-style: italic;
  line-height: 1.5;
  margin: -.15rem 0 .3rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
}

/* Tooltip largo (para file_tip) */
.info-tooltip--lg { max-width: 360px; white-space: pre-line; }

/* File upload */
.file-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }
.file-wrap input[type="file"] {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  opacity: 0 !important;
}
.file-label {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem !important;
  border: 1px dashed rgba(236,190,192,.45) !important;
  border-radius: 2px;
  background: rgba(255,255,255,.04) !important;
  color: var(--mauve) !important;
  cursor: pointer;
  font-size: .78rem !important;
  font-family: var(--ff-sans) !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  transition: all .25s;
  width: auto !important;
  min-width: 0 !important;
  /* Anular reglas .fg label que serían heredadas */
  flex-direction: row !important;
  margin: 0 !important;
}
.file-label:hover { border-color: var(--pink) !important; color: var(--pink) !important; background: rgba(236,190,192,.07) !important; }
.file-list {
  font-size: .78rem;
  color: var(--mauve);
  display: inline-flex;
  flex-direction: column;
  gap: .15rem;
}
.file-list .fl-item { display: inline-flex; align-items: center; gap: .35rem; }
.file-list .fl-rm   { color: var(--rose); cursor: pointer; background: none; border: none; font-size: 1rem; line-height: 1; padding: 0 .15rem; }
.file-max-note { font-size: .7rem; color: var(--mauve-dark); font-style: italic; margin-top: .25rem; display: block; }

/* Checkbox de consentimiento */
.fg-consent { gap: .25rem; }
.fg-consent .consent-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .78rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--mauve) !important;
  font-weight: 300 !important;
  line-height: 1.5;
}
.fg-consent input[type="checkbox"] {
  width: 1.05rem !important;
  height: 1.05rem !important;
  flex: 0 0 auto;
  margin-top: .15rem;
  accent-color: var(--pink);
  cursor: pointer;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  background: transparent !important;
  border: 1px solid var(--pink) !important;
  padding: 0 !important;
}
.fg-consent .consent-text a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.fg-consent .consent-text a:hover { color: var(--rose); }

/* Pop-up de confirmación de envío */
.mmcl-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mmcl-popup[hidden] { display: none; }
.mmcl-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,12,18,.78);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.mmcl-popup__panel {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  animation: popupIn .3s var(--ease);
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.mmcl-popup__x {
  position: absolute;
  top: .6rem; right: .9rem;
  background: none; border: none;
  font-size: 1.6rem; line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.mmcl-popup__x:hover { color: var(--burgundy); }
.mmcl-popup__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
}
.mmcl-popup__title { color: var(--dark); font-size: 1.4rem; margin-bottom: .5rem; }
.mmcl-popup__body  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; margin-bottom: 1.5rem; }
.mmcl-popup .btn   { padding: .7rem 1.6rem; }

/* Powered by One Ingot */
.powered-by {
  text-align: center;
  padding: 1.5rem 1rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(236,190,192,.06);
}
.powered-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: color .25s, transform .25s;
}
.powered-link:hover { color: var(--pink); transform: translateY(-1px); }
.powered-link strong { color: var(--mauve); font-weight: 700; letter-spacing: .18em; }
.powered-logo { max-height: 22px; width: auto; opacity: .85; transition: opacity .25s; }
.powered-link:hover .powered-logo { opacity: 1; }

/* COOKIE BANNER */
.mmcl-cookies {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 540px;
  margin: 0 auto;
  background: var(--dark-light);
  color: var(--mauve);
  border: 1px solid rgba(236,190,192,.18);
  border-radius: 4px;
  padding: 1.25rem 1.4rem;
  z-index: 9998;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  font-size: .82rem;
  line-height: 1.6;
  animation: cookieIn .4s .3s var(--ease) both;
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.mmcl-cookies[hidden] { display: none; }
.mmcl-cookies p     { margin-bottom: .9rem; }
.mmcl-cookies a     { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.mmcl-cookies a:hover { color: var(--rose); }
.mmcl-cookies__btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.mmcl-cookies__btn {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--pink);
  background: var(--pink);
  color: var(--dark);
  transition: all .25s;
}
.mmcl-cookies__btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.mmcl-cookies__btn--ghost { background: transparent; color: var(--pink); }
.mmcl-cookies__btn--ghost:hover { background: rgba(236,190,192,.1); color: var(--pink); }

/* BLOG SINGLE — texto legible (sustituye el blanco invisible) */
.single-wrap { background: var(--bg-light); color: var(--text-dark); }
.single-wrap .post-content,
.single-wrap .post-content p,
.single-wrap .post-content li { color: var(--dark) !important; }
.single-wrap .post-content a  { color: var(--burgundy); }

/* Comentarios — visibles sobre fondo claro */
.single-wrap .comments-area,
.single-wrap .comments-area * { color: var(--dark) !important; }
.single-wrap .comments-area input,
.single-wrap .comments-area textarea {
  background: #fff !important;
  border: 1px solid rgba(44,34,51,.18) !important;
  color: var(--dark) !important;
  padding: .65rem .9rem !important;
  font-family: var(--ff-sans) !important;
  width: 100%;
  border-radius: 2px;
}
.single-wrap .comments-area input:focus,
.single-wrap .comments-area textarea:focus { border-color: var(--burgundy) !important; outline: none; }
.single-wrap .comments-area .comment-form-comment { margin-bottom: .35rem; }
.single-wrap .comment-rules {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin: .35rem 0 1.25rem;
  border-left: 3px solid var(--rose);
  padding-left: .85rem;
}
.single-wrap .comment-rules a { color: var(--burgundy); text-decoration: underline; }

/* Share buttons */
.mmcl-share {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 2rem 0 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(44,34,51,.1);
  border-bottom: 1px solid rgba(44,34,51,.1);
  align-items: center;
}
.mmcl-share__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-right: .5rem;
}
.mmcl-share a, .mmcl-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid rgba(44,34,51,.12);
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
  font-size: .85rem;
}
.mmcl-share a:hover, .mmcl-share button:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--pink);
  transform: translateY(-2px);
}
.mmcl-share .copy-ok { background: #25D366; border-color: #25D366; color: #fff; }

/* Responsive — formulario móvil */
@media (max-width: 600px) {
  .vol-wrap { flex-wrap: wrap; gap: .5rem; }
  .vol-wrap input { width: 100% !important; }
  .vol-wrap .vol-unit { width: 100% !important; }
  .file-wrap { flex-direction: column; align-items: flex-start; }
  .info-tooltip { left: 0; transform: translateY(4px); max-width: calc(100vw - 4rem); }
  .info-icon:hover .info-tooltip,
  .info-icon:focus .info-tooltip { transform: translateY(0); }
  .info-tooltip::after { left: 1rem; }
}
