/* ============================================
   MB COCINAS — Stylesheet
   Mobile-first · Premium professional
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ff0000;
  --red-dark: #d40000;
  --red-darker: #a30000;
  --gray: #e3e3e3;
  --gray-light: #f5f5f5;
  --gray-dark: #2a2a2a;
  --black: #000000;
  --text: #111111;
  --text-muted: #555555;
  --white: #ffffff;
  --green-wa: #25D366;
  --border: #e5e5e5;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --nav-h: 70px;
  --topbar-h: 36px;
  --section-y: 64px;
  --container: 1240px;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --t: 0.3s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
input, textarea, select { -webkit-appearance: none; appearance: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: var(--section-y) 0; }

@media (min-width: 768px) {
  :root { --section-y: 96px; }
  .container { padding: 0 32px; }
}

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.section__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section__cta p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .section__header { margin-bottom: 56px; }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.btn--wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn--wa:hover {
  background: #1da851;
  border-color: #1da851;
}
.btn--wa svg { width: 18px; height: 18px; }

.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; }

/* ============================================
   TOPBAR
============================================ */
.topbar {
  background: var(--black);
  color: var(--white);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 12px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--t); }
.topbar a:hover { color: var(--white); }
.topbar__sep { color: rgba(255,255,255,0.3); }

@media (max-width: 600px) {
  .topbar { font-size: 11px; }
  .topbar__sep { display: none; }
  .topbar__inner { gap: 10px; }
}

/* ============================================
   NAV
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: none;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--t);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--t);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  color: var(--text);
}
.nav__mobile .btn {
  margin-top: 8px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 0, 0, 0.95);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title sup {
  font-size: 0.25em;
  vertical-align: super;
  font-weight: 500;
  color: var(--red);
}

.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 480px) {
  .hero__actions .btn { flex: 1; min-width: 0; }
}

/* ============================================
   STATS
============================================ */
.stats {
  background: var(--black);
  padding: 48px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats__num {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
}
.stats__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ============================================
   PRODUCTOS
============================================ */
.productos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.producto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.producto-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.producto-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.producto-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.producto-card:hover .producto-card__img img { transform: scale(1.06); }

.producto-card__body {
  padding: 20px;
  text-align: center;
}
.producto-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.producto-card__body p {
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 600px) { .productos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .productos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .productos__grid { grid-template-columns: repeat(5, 1fr); } }

/* ============================================
   CTA STRIPS
============================================ */
.cta-strip {
  background: var(--red);
  padding: 36px 0;
  color: var(--white);
}
.cta-strip--dark { background: var(--black); }

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}
.cta-strip__inner > div { flex: 1; }
.cta-strip h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-strip p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .cta-strip { padding: 48px 0; }
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

/* ============================================
   NOSOTROS
============================================ */
.nosotros__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.nosotros__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.nosotros__img > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.nosotros__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.nosotros__badge-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}
.nosotros__badge-text {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

.nosotros__text { display: flex; flex-direction: column; gap: 18px; }
.nosotros__text > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.nosotros__text strong { color: var(--text); font-weight: 700; }

.nosotros__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}
.nosotros__features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.nosotros__features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.nosotros__text .btn { align-self: flex-start; margin-top: 12px; }

@media (min-width: 900px) {
  .nosotros__inner { grid-template-columns: 1fr 1.1fr; gap: 64px; }
}

/* ============================================
   PROCESO
============================================ */
.proceso { background: var(--gray-light); }

.proceso__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.proceso__step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t);
}
.proceso__step:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proceso__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.proceso__step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.proceso__step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}
.proceso__link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  transition: gap var(--t);
  display: inline-flex;
  gap: 4px;
}
.proceso__link:hover { gap: 8px; }

@media (min-width: 768px) {
  .proceso__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============================================
   GALERÍA
============================================ */
.galeria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galeria__item:hover img { transform: scale(1.06); }

.galeria__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}
.galeria__overlay h4 {
  font-size: 16px;
  font-weight: 700;
}
.galeria__overlay span {
  font-size: 12px;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .galeria__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .galeria__item { aspect-ratio: auto; }
  .galeria__item--tall { grid-row: span 2; }
  .galeria__item--wide { grid-column: span 2; }
}

/* ============================================
   MATERIALES
============================================ */
.materiales { background: var(--gray-light); }

.materiales__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.materiales__text { display: flex; flex-direction: column; gap: 20px; }
.materiales__text > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.materiales__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0;
}
.materiales__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.materiales__item:first-child { border-top: 1px solid var(--border); }
.materiales__item h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}
.materiales__item p {
  font-size: 15px;
  color: var(--text);
}

.materiales__text .btn { align-self: flex-start; margin-top: 8px; }

.materiales__imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.materiales__img-1, .materiales__img-2 {
  border-radius: var(--radius);
  overflow: hidden;
}
.materiales__img-1 img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.materiales__img-2 img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .materiales__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .materiales__imgs {
    grid-template-columns: 1fr;
    height: 540px;
  }
  .materiales__img-1, .materiales__img-2 { position: absolute; }
  .materiales__img-1 {
    top: 0; right: 0;
    width: 75%;
    height: 75%;
  }
  .materiales__img-1 img { height: 100%; aspect-ratio: auto; }
  .materiales__img-2 {
    bottom: 0; left: 0;
    width: 55%;
    height: 50%;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
  }
  .materiales__img-2 img { height: 100%; aspect-ratio: auto; }
}

/* ============================================
   CATÁLOGO
============================================ */
.catalogo__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.catalogo__text { display: flex; flex-direction: column; gap: 18px; }
.catalogo__text .section__label { color: var(--red); }
.catalogo__text > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.catalogo__text .btn { align-self: flex-start; }

.catalogo__card {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.catalogo__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogo__cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  filter: grayscale(0.3);
}
.catalogo__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalogo__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.catalogo__cover-overlay span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}
.catalogo__cover-overlay strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (min-width: 900px) {
  .catalogo__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

/* ============================================
   TESTIMONIOS
============================================ */
.testimonios { background: var(--gray-light); }

.testimonios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonios__card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonios__stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonios__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.testimonios__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonios__author strong {
  font-size: 14px;
  font-weight: 700;
}
.testimonios__author span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .testimonios__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ============================================
   FAQ
============================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item[open] { border-color: var(--red); }

.faq__item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform var(--t);
  line-height: 1;
}
.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   CONTACTO
============================================ */
.contacto { background: var(--gray-light); }

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.contacto__info { display: flex; flex-direction: column; gap: 18px; }
.contacto__info > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contacto__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contacto__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contacto__list li:first-child { border-top: 1px solid var(--border); }
.contacto__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.contacto__list strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.contacto__list a,
.contacto__list span {
  display: block;
  font-size: 15px;
  color: var(--text);
  transition: color var(--t);
}
.contacto__list a:hover { color: var(--red); }

/* Form */
.contacto__form {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacto__form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.contacto__form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 4px;
}

.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.form__group label span { color: var(--red); }
.form__group label .opt {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: all var(--t);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #999;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form__group textarea { resize: vertical; min-height: 90px; }

.contacto__form .btn { margin-top: 8px; }
.contacto__form-note {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 900px) {
  .contacto__form { padding: 40px; }
  .contacto__inner { grid-template-columns: 1fr 1.1fr; gap: 64px; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo {
  width: 90px;
  height: auto;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--t);
}
.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.footer__col a,
.footer__col span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--red); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

/* ============================================
   WHATSAPP FAB
============================================ */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform var(--t);
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  position: relative;
  z-index: 1;
}

.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-wa);
  animation: pulse 2s ease-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (min-width: 768px) {
  .wa-fab {
    width: 64px;
    height: 64px;
    bottom: 28px;
    right: 28px;
  }
  .wa-fab svg { width: 34px; height: 34px; }
}

/* ============================================
   NAV ACTIVE STATE
============================================ */
.nav__links a.active { color: var(--red); }
.nav__links a.active::after { width: 100%; }
.nav__mobile a.active { color: var(--red); font-weight: 700; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  position: relative;
  padding: 80px 0 64px;
  display: flex;
  align-items: center;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero__crumbs {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.page-hero__crumbs a {
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
}
.page-hero__crumbs a:hover { color: var(--red); }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}

.page-hero--simple {
  background: var(--gray-light);
  color: var(--text);
  min-height: 240px;
  padding: 80px 0 48px;
}
.page-hero--simple .page-hero__crumbs { color: var(--text-muted); }
.page-hero--simple .page-hero__crumbs a { color: var(--text); }
.page-hero--simple p { color: var(--text-muted); }

/* ============================================
   HERO CARRUSEL (servicios)
============================================ */
.hero-carousel {
  position: relative;
  min-height: 480px;
  height: 70vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-carousel__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-carousel__slide.active { opacity: 1; }
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.3) 100%);
}

.hero-carousel__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-carousel__content .page-hero__crumbs {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.hero-carousel__content .page-hero__crumbs a { color: rgba(255,255,255,0.9); }
.hero-carousel__content h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-carousel__content p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-carousel__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-carousel__dot {
  width: 36px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background var(--t);
}
.hero-carousel__dot:hover { background: rgba(255,255,255,0.7); }
.hero-carousel__dot.active { background: var(--red); }

@media (max-width: 600px) {
  .hero-carousel { height: auto; min-height: 480px; padding: 100px 0 80px; }
  .hero-carousel__dots { bottom: 20px; }
  .hero-carousel__dot { width: 24px; }
}

/* ============================================
   PROCESOS — Grid limpio estilo proyectos
============================================ */
.procesos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.proceso-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.proceso-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proceso-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.proceso-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.proceso-card:hover .proceso-card__img img { transform: scale(1.06); }

.proceso-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
}

.proceso-card__body {
  padding: 24px;
}
.proceso-card__body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.proceso-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .procesos__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============================================
   TESTIMONIOS — with avatars
============================================ */
.testimonios__author {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonios__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonios__author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ============================================
   CONTACTO-MINI (home, with premium kitchen)
============================================ */
.contacto-mini { background: var(--gray-light); }

.contacto-mini__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.contacto-mini__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.contacto-mini__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.contacto-mini__img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 18px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  color: var(--white);
}
.contacto-mini__img-tag span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.contacto-mini__img-tag strong {
  font-size: 14px;
  font-weight: 700;
}

.contacto-mini__text { display: flex; flex-direction: column; gap: 18px; }
.contacto-mini__text > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contacto-mini__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .contacto-mini__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ============================================
   CONTACTO PAGE (full)
============================================ */
.contacto-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contacto-page__info { display: flex; flex-direction: column; gap: 20px; }
.contacto-page__info > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contacto-page__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contacto-page__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contacto-page__list li:first-child { border-top: 1px solid var(--border); }

.contacto-page__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 18px;
}

.contacto-page__list strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}
.contacto-page__list a,
.contacto-page__list span {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
  transition: color var(--t);
}
.contacto-page__list a:hover { color: var(--red); }
.contacto-page__small {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 4px;
}

.contacto-page__social { margin-top: 12px; }
.contacto-page__social h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.contacto-page__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contacto-page__social-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--t);
}
.contacto-page__social-list a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.contacto-page__social-list a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.contacto-page__social-list a:hover span {
  background: var(--white);
  color: var(--red);
}

.contacto-page__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.contacto-page__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.contacto-page__visual-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.contacto-page__visual-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}
.contacto-page__visual-card span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  max-width: 180px;
  line-height: 1.3;
}

@media (min-width: 900px) {
  .contacto-page__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* ============================================
   CONTACTO FORM section (feature list)
============================================ */
.contacto__feature {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contacto__feature:first-of-type { border-top: 1px solid var(--border); }
.contacto__feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
}
.contacto__feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contacto__feature span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   MAPA
============================================ */
.mapa__wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mapa__wrap iframe { display: block; }

@media (max-width: 600px) {
  .mapa__wrap { aspect-ratio: 4 / 5; }
}

/* ============================================
   LEGAL (políticas)
============================================ */
.legal__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.legal__toc {
  display: none;
}
.legal__toc h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 700;
}
.legal__toc a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--t);
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -14px;
}
.legal__toc a:hover {
  color: var(--red);
  border-color: var(--red);
}

.legal__content {
  max-width: 800px;
}

.legal__updated {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: inline-block;
}

.legal__intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 24px 0 32px;
}

.legal__content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 16px;
  border-top: 2px solid var(--red);
  display: inline-block;
  padding-right: 40px;
}

.legal__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
}

.legal__content ul {
  padding-left: 0;
  margin-bottom: 20px;
}
.legal__content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.legal__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.legal__content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal__note {
  margin-top: 40px;
  padding: 20px 24px;
  background: #fff8e6;
  border-left: 4px solid #f5c200;
  border-radius: var(--radius);
}
.legal__note p {
  font-size: 13px;
  margin: 0;
  color: #6b5400;
}
.legal__note strong { color: #4a3a00; }

@media (min-width: 900px) {
  .legal__inner {
    grid-template-columns: 220px 1fr;
    gap: 56px;
  }
  .legal__toc {
    display: block;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    align-self: start;
  }
}

/* ============================================
   POPUPS
============================================ */
.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup.open {
  display: flex;
  animation: popupFadeIn 0.4s ease;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.popup__box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 460px;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: popupSlideUp 0.45s cubic-bezier(0.34, 1.32, 0.64, 1);
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.popup__close:hover {
  background: var(--text);
  color: var(--white);
  transform: rotate(90deg);
}

.popup__media {
  padding: 32px 24px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
}
.popup__media--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
}
.popup__media--dark {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
}

.popup__tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 12px;
}
.popup__tag--white {
  background: var(--red);
}

.popup__discount {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 6px 0;
}
.popup__discount small {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}

.popup__icon-big {
  font-size: 3.5rem;
  margin: 8px 0;
  line-height: 1;
}

.popup__media-text {
  font-size: 13px;
  opacity: 0.92;
  letter-spacing: 0.01em;
}

.popup__body {
  padding: 24px;
  text-align: center;
}
.popup__body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.popup__body h3 strong { color: var(--red); }
.popup__body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.popup__body > p strong { color: var(--text); }

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.popup__form input {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: all var(--t);
}
.popup__form input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.popup__form .btn { margin-top: 4px; }

.popup__legal {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}

@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .popup { padding: 12px; }
  .popup__media { padding: 28px 20px 20px; }
  .popup__body { padding: 20px; }
  .popup__discount { font-size: 3.75rem; }
  .popup__body h3 { font-size: 1.2rem; }
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
