/* ── VARIABLES ───────────────────────────────────── */
:root {
  /* Colores marca Vermur — Manual de Identidad */
  --purple:      #3d2372;   /* Uva V — púrpura oficial */
  --purple-dk:   #2e1a57;   /* púrpura oscuro (navbar, hero, footer) */
  --purple-dkr:  #1f103b;   /* casi negro (footer fondo) */
  --purple-lt:   #5035a0;   /* hover sobre fondo oscuro */
  --red:         #cd3529;   /* Rojo V — rojo oficial */
  --red-lt:      #e04a3e;   /* rojo hover */
  --yellow:      #e8ac30;   /* Amarillo V — acento dorado */

  /* Tema claro — base blanca */
  --white:       #ffffff;
  --off-white:   #f8f7fc;   /* blanco con tinte morado muy sutil */
  --light-bg:    #f0ecf8;   /* fondo claro con acento morado */
  --text:        #1f103b;   /* texto principal oscuro */
  --text-2:      #5a4e80;   /* texto secundario */
  --gray:        #9490b0;   /* gris para secciones oscuras */
  --gray-lt:     #cdc9e8;   /* gris claro para secciones oscuras */
  --card-bg:     #ffffff;   /* tarjetas blancas */
  --border:      rgba(61,35,114,.14); /* borde púrpura sutil */

  /* Alias semánticos */
  --bg:          var(--white);
  --bg-2:        var(--off-white);
  --bg-3:        var(--light-bg);
  --accent:      var(--red);
  --accent-lt:   var(--red-lt);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'DM Serif Display', serif;
  --ff-body:    'DM Sans', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(61,35,114,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

/* ── LOGO REAL ───────────────────────────────────── */
.navbar__logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* El logo tiene fondo negro, lo hacemos encajar con mix-blend-mode */
  filter: brightness(1.1);
}
.footer__logo-img {
  height: auto;
  width: auto ;
  display: block;
  filter: brightness(1.05);
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── IMAGE PLACEHOLDERS ─────────────────────────── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  border: 2px dashed var(--red);
  background: rgba(205,53,41,.06);
  border-radius: var(--radius);
}
.img-placeholder small { font-size: .65rem; color: var(--gray); margin-top: 4px; }

.img-placeholder--logo     { width: 160px; height: 44px; }
.img-placeholder--logo-sm  { width: 130px; height: 36px; }
.img-placeholder--hero     { width: 100%; height: 100%; }
.img-placeholder--about    { width: 100%; height: 440px; }
.img-placeholder--icon     { width: 64px; height: 64px; font-size: 1.6rem; border: none; background: none; }
.img-placeholder--client   { width: 180px; height: 90px; }
.img-placeholder--cert     { width: 180px; height: 90px; }
.img-placeholder--news     { width: 100%; height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
.news-card__img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; }
.img-placeholder--map      { width: 100%; height: 180px; margin-top: 1.5rem; }
.contact__map { margin-top: 1.5rem; }
.contact__map iframe { border-radius: 8px; display: block; }
.contact__map-link { display: inline-block; margin-top: .6rem; font-size: .85rem; color: var(--accent); text-decoration: none; }
.contact__map-link:hover { text-decoration: underline; }

/* ── UTILS ───────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-sizing: border-box;
  line-height: 1.2;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: var(--accent-lt); transform: translateY(-2px); }
.btn--sm { padding: .45rem 1rem; font-size: .78rem; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.article-cta .btn--ghost {
  color: var(--purple);
  border-color: rgba(61,35,114,.4);
}
.article-cta .btn--ghost:hover {
  border-color: var(--purple);
  background: rgba(61,35,114,.07);
}
.btn--white { background: var(--white); color: var(--bg); }
.btn--white:hover { background: var(--accent-lt); }
.btn--outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: .9rem 2.2rem; font-size: .95rem; }
.btn--block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 4vw;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,35,114,.08);
  transition: var(--transition);
}
.navbar__logo { flex-shrink: 0; }
.navbar__actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.navbar__nav  { display: flex; gap: 1.8rem; flex: 1; justify-content: center; flex-wrap: wrap; }
.navbar__nav a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple);
  transition: color var(--transition);
}
.navbar__nav a:hover { color: var(--accent); }
.navbar__lang { color: var(--gray) !important; font-size: .8rem !important; }
.navbar__burger { display: none; background: none; border: none; color: var(--purple); font-size: 1.4rem; cursor: pointer; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 6vw 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  align-items: center;
  inset: 0;
  z-index: 0;
}
.hero__bg .img-placeholder--hero {
  height: 100%;
  border: none;
  background: var(--bg-2);
  border-radius: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(61,35,114,.50) 0%,
    rgba(61,35,114,.78) 50%,
    rgba(31,16,59,.97) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
  text-align: center;
}
.hero__tag {
  display: inline-block;
  font-size: .90rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  top: -3rem;
  /* text-shadow: 0 0 18px rgba(255,255,255,.45), 0 1px 3px rgba(0,0,0,.5); */
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--red);
  font-size: .95em;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-lt);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.hero__contact-bar {
  display: flex;
  gap: 2rem;
  font-size: .85rem;
  color: var(--gray);
  flex-wrap: wrap;
}
.hero__contact-bar span { display: flex; align-items: center; gap: .4rem; }
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}
.about__media { overflow: hidden; }
.about__video-wrap { position: relative; width: 100%; height: 100%; }
.video-sound-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(31,16,59,.72);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px;
  padding: .5rem 1rem;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.video-sound-btn:hover {
  background: rgba(61,35,114,.88);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.video-sound-btn__icon { font-size: 1rem; }
.about__video {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}
.about__media .img-placeholder--about {
  height: 100%;
  min-height: 440px;
  border-radius: 0;
  border: none;
  background: var(--bg-3);
}
.about__content {
  padding: 6rem 5vw;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.about__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: .02em;
}
.about__content p { color: var(--text-2); font-size: .95rem; }
.about__content strong { color: var(--purple); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 7rem 4vw;
  background: var(--bg);
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
.services__header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: .02em;
  line-height: 1.05;
}
.services__header h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--red);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(61,35,114,.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61,35,114,.15);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon { margin-bottom: .5rem; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--purple);
}
.service-card p { font-size: .9rem; color: var(--text-2); flex: 1; }
.service-card__link {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--accent-lt); }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--purple) 100%);
  padding: 5rem 4vw;
}
.cta-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  color: var(--white);
}
.cta-banner p { color: rgba(248,246,255,.85); font-size: 1rem; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════ */
.clients {
  padding: 7rem 4vw;
  background: var(--bg-2);
  text-align: center;
}
.clients h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .02em;
  margin-bottom: 3.5rem;
  line-height: 1.05;
}
.clients h2 em { font-family: var(--ff-serif); font-style: italic; color: var(--accent); }
.clients__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.img-placeholder--client {
  filter: grayscale(1);
  opacity: .6;
  transition: var(--transition);
  width: 120px;
  height: 64px;
  object-fit: contain;
  background: none;
  border: none;
  display: block;
  margin: 0 auto;
}
.img-placeholder--client:hover {
  opacity: 1;
  filter: grayscale(0);
}
.img-placeholder--client:hover { filter: none; opacity: 1; }

/* ══════════════════════════════════════════
   CERTS
══════════════════════════════════════════ */
.certs {
  padding: 6rem 4vw;
  background: var(--bg);
  text-align: center;
}
.certs h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .02em;
  margin-bottom: 3rem;
  line-height: 1.05;
}
.certs h2 em { font-family: var(--ff-serif); font-style: italic; color: var(--accent); }
.certs__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.img-placeholder--cert { opacity: .7; transition: var(--transition); }
img.img-placeholder--cert {
  object-fit: contain;
  background: none;
  border: none;
}
.img-placeholder--cert:hover { opacity: 1; }

/* ══════════════════════════════════════════
   NEWS
══════════════════════════════════════════ */
.news {
  padding: 7rem 4vw;
  background: var(--bg-2);
}
.news__header {
  text-align: center;
  margin-bottom: 4rem;
}
.news__header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .02em;
}
.news__grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.news__grid::-webkit-scrollbar { height: 5px; }
.news__grid::-webkit-scrollbar-track { background: transparent; }
.news__grid::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
.news-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61,35,114,.15); border-color: rgba(61,35,114,.3); }
.news-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.news-card__date { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.news-card h3 { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--purple); line-height: 1.35; }
.news-card p { font-size: .88rem; color: var(--text-2); flex: 1; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg);
}
.contact__info {
  padding: 6rem 5vw;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: .02em;
  line-height: 1.05;
}
.contact__info h2 em { font-family: var(--ff-serif); font-style: italic; color: var(--accent); }
.contact__info p { color: var(--text-2); font-size: .95rem; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.contact__details li { font-size: .95rem; color: var(--text-2); }
.contact__details a:hover { color: var(--accent); }
.contact__form {
  padding: 6rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__form h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid rgba(61,35,114,.22);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(61,35,114,.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--bg-2); }
.form-status { margin-top: .75rem; font-size: .9rem; font-weight: 500; min-height: 1.2em; }
.form-status--ok    { color: #22c55e; }
.form-status--error { color: var(--accent); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #180c38; padding: 4rem 4vw 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(205,53,41,.15);
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand p { font-size: .88rem; color: var(--gray); max-width: 260px; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); transition: color var(--transition); }
.footer__social a:hover { color: var(--accent); }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links h4 { font-family: var(--ff-display); letter-spacing: .12em; font-size: .95rem; color: var(--white); margin-bottom: .4rem; }
.footer__links a { font-size: .85rem; color: var(--gray); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: .8rem; }
.footer__contact h4 { font-family: var(--ff-display); letter-spacing: .12em; font-size: .95rem; color: var(--white); margin-bottom: .4rem; }
.footer__contact p { font-size: .85rem; color: var(--gray); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: .78rem;
  color: var(--gray);
  flex-wrap: wrap;
  gap: .6rem;
}
.footer__bottom a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar .btn { display: none; }
  .navbar__burger { display: block; }

  .navbar__nav--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(61,35,114,.12);
    box-shadow: 0 8px 24px rgba(61,35,114,.12);
    padding: 1.5rem 4vw 2rem;
    gap: 1.2rem;
    z-index: 99;
  }

  .navbar__nav--open a {
    font-size: 1rem;
    color: var(--purple);
    width: 100%;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(61,35,114,.08);
  }

  .navbar__nav--open a:last-of-type {
    border-bottom: none;
  }

  /* Selector de idioma táctil en menú móvil */
  .navbar__nav--open .lang-switcher {
    width: 100%;
    border-top: 1px solid rgba(61,35,114,.08);
    padding-top: .6rem;
  }

  .navbar__nav--open .lang-switcher__btn {
    font-size: 1rem;
    padding: .4rem 0;
    width: 100%;
    color: var(--purple);
  }

  .navbar__nav--open .lang-switcher__dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: .5rem;
    width: 100%;
  }

  .navbar__nav--open .lang-switcher__dropdown.is-open {
    display: block;
  }

  .navbar__nav--open .lang-switcher__dropdown button {
    font-size: 1rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(61,35,114,.06);
  }

  .navbar__nav--open .lang-switcher__dropdown button:last-child {
    border-bottom: none;
  }

  /* Hero tag: quitar el top negativo en mobile */
  .hero__tag { top: 0; }

  .about { grid-template-columns: 1fr; }
  .about__media .img-placeholder--about { min-height: 280px; }

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

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3.2rem; }
  .services__grid { grid-template-columns: 1fr; }
  .news-card { flex: 0 0 280px; }
}

/* ── LANGUAGE SWITCHER ───────────────────── */
.lang-switcher { position: relative; }
.lang-switcher__btn {
  background: none; border: none; color: var(--purple);
  cursor: pointer; font: inherit; padding: 0;
  display: flex; align-items: center; gap: .3rem;
  font-size: .9rem; font-weight: 600;
  transition: color var(--transition);
}
.navbar .btn--ghost { color: var(--purple); border-color: rgba(61,35,114,.4); }
.navbar .btn--ghost:hover { border-color: var(--purple); background: rgba(61,35,114,.07); }
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  overflow: hidden;
  z-index: 300;
  min-width: 155px;
}
.lang-switcher__dropdown.is-open { display: block; }
.lang-switcher__dropdown button {
  display: block; width: 100%; text-align: left;
  padding: .65rem 1.1rem; background: none; border: none;
  cursor: pointer; font-size: .9rem; color: var(--text);
  transition: background .15s; white-space: nowrap;
}
.lang-switcher__dropdown button:hover { background: var(--bg-3); }

/* ── PHONE POPUP ─────────────────────────── */
.phone-trigger { position: relative; display: inline-block; }
.phone-trigger__btn--inline {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.phone-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  overflow: hidden;
  z-index: 200;
  min-width: 180px;
}
.phone-popup.is-open { display: block; }
.phone-trigger:focus-within .phone-popup { display: block; }
.phone-popup__opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.2rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.phone-popup__opt:hover { background: var(--bg-3); }
.phone-popup__opt--wa { color: #25d366; }


.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social a:hover img {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* ── SCROLL ANIMATIONS ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ACTIVE ───────────────────────────── */
.navbar__nav a.is-active {
  color: var(--accent);
  position: relative;
}
.navbar__nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── CTA CALL DROPDOWN ───────────────────────── */
.cta-call { position: relative; display: inline-flex; align-items: stretch; }
.cta-call__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  overflow: hidden;
  z-index: 9999;
  min-width: 180px;
}
.cta-call__dropdown.open { display: block; }
.cta-call:focus-within .cta-call__dropdown { display: block; }
.cta-call__opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.2rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.cta-call__opt:hover { background: var(--bg-3); }
.cta-call__opt--wa { color: #25d366; }