/* =========================================================
   VARIABLES GLOBALES
========================================================= */
:root {
  --bg: #050505;
  --black: #090909;
  --black-soft: #111111;

  --gold: #d6aa45;
  --gold-light: #ffe29b;

  --purple: #7d2cff;
  --purple-dark: #2b064d;

  --white: #f7f0df;
  --muted: #b8aa8c;

  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 226, 155, 0.18);

  --radius: 26px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.65);
}

/* =========================================================
   RESET BÁSICO
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Configuración general del sitio */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Imágenes responsive */
img {
  width: 100%;
  display: block;
}

/* Links sin subrayado */
a {
  color: inherit;
  text-decoration: none;
}

/* Botones con fuente heredada */
button {
  font-family: inherit;
}

/* =========================================================
   FONDO DECORATIVO
========================================================= */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.aurora {
  position: fixed;
  width: 520px;
  height: 520px;
  top: -180px;
  right: -180px;
  background: radial-gradient(circle, rgba(125, 44, 255, 0.45), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.aurora::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: 420px;
  background: radial-gradient(circle, rgba(214, 170, 69, 0.22), transparent 70%);
}

/* =========================================================
   HEADER
========================================================= */
.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1120px;
  height: 68px;
  padding: 0 16px;

  border: 1px solid var(--glass-border);
  border-radius: 999px;

  background: rgba(6, 6, 6, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 20;
  box-shadow: var(--shadow);
}

/* Logo + nombre */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 226, 155, 0.35);
}

.brand span {
  font-family: "Cinzel", serif;
  font-size: 15px;
}

/* Botón hamburguesa */
.menu-btn {
  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  background: var(--glass);

  display: grid;
  place-content: center;
  gap: 6px;

  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  transition: 0.3s ease;
}

.menu-btn.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Menú móvil */
.nav {
  position: absolute;
  top: 82px;
  left: 0;

  width: 100%;
  padding: 18px;

  border-radius: 24px;
  border: 1px solid var(--glass-border);

  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  display: none;
  flex-direction: column;
  gap: 6px;
}

/* Clase que JS activa */
.nav.active {
  display: flex;
}

.nav a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav a:hover {
  background: rgba(214, 170, 69, 0.1);
  color: var(--gold-light);
}

/* Botón de idioma */
.lang-toggle {
  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255, 226, 155, 0.25);
  background: rgba(214, 170, 69, 0.1);

  color: var(--gold-light);

  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;

  cursor: pointer;
  transition: 0.25s ease;
}

.lang-toggle:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #160f03;
  box-shadow: 0 0 24px rgba(214, 170, 69, 0.35);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 18px 80px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

/* Imagen de fondo del hero */
/* Como este CSS está dentro de style/, usamos ../img/ */
.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.35), rgba(5, 5, 5, 0.96)),
    url("../img/1.jpeg") center / cover;

  opacity: 0.65;
  transform: scale(1.05);
  z-index: -2;
}

/* Capa oscura/violeta encima de la imagen */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 50% 20%, rgba(125, 44, 255, 0.35), transparent 35%),
    linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));

  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* Badges dorados */
.badge,
.section-title span,
.premium-text span,
.cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-light);
  border: 1px solid rgba(255, 226, 155, 0.22);
  background: rgba(214, 170, 69, 0.08);

  border-radius: 999px;
  padding: 8px 14px;

  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

/* Título principal */
.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(40px, 11vw, 92px);
  line-height: 0.95;
  letter-spacing: -2px;
  text-wrap: balance;
}

/* Primera línea del título */
.hero-title-main {
  display: block;
  color: var(--white);
}

/* Segunda línea con degradado dorado */
.hero-title-accent {
  display: block;

  background: linear-gradient(135deg, var(--gold-light), var(--gold), #8c651f);
  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  text-shadow: 0 0 55px rgba(214, 170, 69, 0.18);
}

.hero p {
  max-width: 650px;
  margin: 22px auto 0;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Botones del hero */
.hero-actions {
  margin-top: 34px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Botón base */
.btn {
  min-height: 54px;
  padding: 0 24px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  letter-spacing: 0.3px;

  transition: 0.25s ease;
}

/* Botón dorado */
.btn-primary {
  color: #160f03;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 28px rgba(214, 170, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 42px rgba(214, 170, 69, 0.48);
}

/* Botón glass */
.btn-glass {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: var(--gold-light);
}

.btn-glass:hover {
  background: rgba(214, 170, 69, 0.1);
}

/* Estadísticas */
.hero-stats {
  margin-top: 38px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-stats article {
  padding: 18px;

  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 22px;
  font-family: "Cinzel", serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

/* Indicador de scroll */
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);

  display: grid;
  place-items: center;
  gap: 8px;

  color: var(--muted);
  font-size: 12px;
}

.scroll-hint span {
  width: 22px;
  height: 38px;

  border: 1px solid rgba(255, 226, 155, 0.35);
  border-radius: 999px;

  position: relative;
}

.scroll-hint span::after {
  content: "";

  width: 4px;
  height: 7px;

  background: var(--gold-light);
  border-radius: 999px;

  position: absolute;
  left: 50%;
  top: 8px;

  transform: translateX(-50%);
  animation: wheel 1.4s infinite;
}

.scroll-hint small {
  font-size: 12px;
}

/* Animación del scroll */
@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* =========================================================
   SECCIONES GENERALES
========================================================= */
.section {
  padding: 84px 18px;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2,
.premium-text h2,
.cta h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 8vw, 58px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--gold-light);
}

.section-title p,
.premium-text p,
.cta p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}

/* =========================================================
   EXPERIENCIA
========================================================= */
.experience-grid {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  gap: 16px;
}

/* Tarjetas glass */
.glass-card {
  position: relative;

  padding: 26px;
  border-radius: var(--radius);

  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
  box-shadow: var(--shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;

  background: radial-gradient(circle at top left, rgba(214, 170, 69, 0.25), transparent 40%);
  opacity: 0;

  transition: 0.35s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.icon {
  width: 54px;
  height: 54px;

  border-radius: 18px;

  display: grid;
  place-items: center;

  background: rgba(125, 44, 255, 0.18);
  border: 1px solid rgba(255, 226, 155, 0.16);

  margin-bottom: 20px;
  font-size: 24px;
}

.glass-card h3,
.service-card h3 {
  color: var(--gold-light);
  font-size: 22px;
  margin-bottom: 10px;
}

.glass-card p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   BLOQUE PREMIUM
========================================================= */
.premium-block {
  padding: 40px 18px 90px;

  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  gap: 28px;
}

.premium-image {
  position: relative;

  border-radius: 32px;
  overflow: hidden;

  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.premium-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent),
    radial-gradient(circle at 50% 40%, transparent, rgba(125, 44, 255, 0.2));
}

.premium-image img {
  height: 430px;
  object-fit: cover;
}

.premium-text {
  padding: 10px;
}

.premium-text ul {
  list-style: none;
  margin-top: 24px;

  display: grid;
  gap: 12px;
}

.premium-text li {
  padding: 14px 16px;

  border-radius: 18px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 226, 155, 0.12);
}

.premium-text li::before {
  content: "✦";
  color: var(--gold-light);
  margin-right: 10px;
}

/* =========================================================
   SERVICIOS
========================================================= */
.service-list {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  gap: 16px;
}

.service-card {
  padding: 28px;

  border-radius: var(--radius);

  background: linear-gradient(145deg, rgba(14, 14, 14, 0.95), rgba(28, 18, 6, 0.65));
  border: 1px solid rgba(255, 226, 155, 0.14);

  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 226, 155, 0.34);
}

.service-card span {
  display: inline-block;

  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 15px;

  margin-bottom: 18px;
}

/* =========================================================
   GALERÍA
========================================================= */
.gallery {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  gap: 14px;
}

.photo-card {
  position: relative;

  border: 1px solid rgba(255, 226, 155, 0.14);
  border-radius: 26px;

  background: #111;
  overflow: hidden;

  cursor: pointer;
  box-shadow: var(--shadow);
}

/* Usa el texto del atributo data-label */
.photo-card::after {
  content: attr(data-label);

  position: absolute;
  inset: auto 14px 14px 14px;

  height: 44px;

  border-radius: 999px;

  display: grid;
  place-items: center;

  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 226, 155, 0.2);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  transform: translateY(10px);

  transition: 0.25s ease;
}

.photo-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-card img {
  height: 310px;
  object-fit: cover;
  transition: 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08);
}

/* =========================================================
   CTA
========================================================= */
.cta {
  padding: 40px 18px 100px;
}

.cta-glass {
  max-width: 980px;
  margin: 0 auto;

  text-align: center;

  padding: 44px 24px;
  border-radius: 34px;

  border: 1px solid var(--glass-border);

  background:
    radial-gradient(circle at top, rgba(125, 44, 255, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow: var(--shadow);
}

.cta .btn {
  margin-top: 26px;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 30px 18px 120px;

  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.developer-footer {
  padding: 40px 18px 130px;
}

.footer-glass {
  max-width: 1120px;
  margin: 0 auto;

  padding: 24px;
  border-radius: 28px;

  border: 1px solid rgba(255, 226, 155, 0.16);

  background:
    radial-gradient(circle at top left, rgba(214, 170, 69, 0.14), transparent 38%),
    radial-gradient(circle at bottom right, rgba(125, 44, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  display: grid;
  gap: 20px;

  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.footer-brand span {
  display: block;

  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 800;

  margin-bottom: 6px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
}

.developer-credit {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 226, 155, 0.12);
}

.developer-credit span {
  display: block;

  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  margin-bottom: 6px;
}

.developer-credit strong {
  display: block;

  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 0.4px;
}

.developer-credit small {
  display: inline-flex;

  margin-top: 8px;
  padding: 7px 12px;

  border-radius: 999px;

  color: #140d03;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));

  font-weight: 800;
  font-size: 11px;

  box-shadow: 0 0 24px rgba(214, 170, 69, 0.25);
}

/* =========================================================
   MODAL DE GALERÍA
========================================================= */
.modal {
  position: fixed;
  inset: 0;

  padding: 18px;

  background: rgba(0, 0, 0, 0.88);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  z-index: 50;

  display: none;
  place-items: center;
}

.modal.active {
  display: grid;
}

.modal img {
  max-width: 100%;
  max-height: 82vh;

  object-fit: contain;

  border-radius: 24px;
  border: 1px solid rgba(255, 226, 155, 0.2);

  box-shadow: 0 0 80px rgba(125, 44, 255, 0.28);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(255, 226, 155, 0.24);

  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);

  font-size: 30px;
  cursor: pointer;
}

/* =========================================================
   WHATSAPP PREMIUM
========================================================= */
.whatsapp-widget {
  position: fixed;
  right: 16px;
  bottom: 18px;

  z-index: 40;

  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chat-bubble {
  position: relative;

  width: 230px;
  padding: 14px 15px 14px 16px;

  border-radius: 22px 22px 6px 22px;

  background:
    linear-gradient(145deg, rgba(10, 10, 10, 0.88), rgba(34, 22, 7, 0.72));

  border: 1px solid rgba(255, 226, 155, 0.2);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(214, 170, 69, 0.08);

  display: flex;
  gap: 10px;
  align-items: flex-start;

  transform-origin: bottom right;
  animation: chatPop 0.8s ease both 1.2s;
}

.chat-bubble::after {
  content: "";

  position: absolute;
  right: -6px;
  bottom: 8px;

  width: 14px;
  height: 14px;

  background: rgba(20, 14, 8, 0.9);
  border-right: 1px solid rgba(255, 226, 155, 0.16);
  border-bottom: 1px solid rgba(255, 226, 155, 0.16);

  transform: rotate(-45deg);
}

.chat-status {
  width: 10px;
  height: 10px;

  margin-top: 4px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #25d366;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.9);
}

.chat-bubble strong {
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1;
}

.chat-bubble p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 5px;
}

.whatsapp-btn {
  position: relative;

  width: 64px;
  height: 64px;

  border-radius: 22px;

  display: grid;
  place-items: center;

  overflow: hidden;

  color: white;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(145deg, #25d366, #087c3a);

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(37, 211, 102, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-radius 0.28s ease;
}

.whatsapp-btn::before {
  content: "";

  position: absolute;
  inset: -40%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: translateX(-80%) rotate(18deg);
  animation: whatsappShine 3s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.04);
  border-radius: 50%;

  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.52),
    0 0 45px rgba(37, 211, 102, 0.55);
}

.whatsapp-ring {
  position: absolute;
  inset: -7px;

  border-radius: 28px;
  border: 1px solid rgba(37, 211, 102, 0.35);

  animation: whatsappRing 2.2s infinite;
}

.whatsapp-icon {
  position: relative;
  z-index: 2;

  width: 31px;
  height: 31px;

  fill: white;

  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

/* Animación de aparición del globo */
@keyframes chatPop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Brillo del botón WhatsApp */
@keyframes whatsappShine {
  0% {
    transform: translateX(-90%) rotate(18deg);
  }

  48%,
  100% {
    transform: translateX(125%) rotate(18deg);
  }
}

/* Anillo del botón WhatsApp */
@keyframes whatsappRing {
  0% {
    opacity: 0.9;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

/* =========================================================
   ANIMACIONES AL HACER SCROLL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================================
   RESPONSIVE DESKTOP
========================================================= */
@media (min-width: 760px) {
  .menu-btn {
    display: none;
  }

  .nav {
    position: static;

    width: auto;
    padding: 0;

    border: 0;
    background: transparent;

    display: flex;
    flex-direction: row;
    align-items: center;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav a {
    font-size: 14px;
    padding: 10px 12px;
  }

  .hero {
    padding-inline: 32px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin-inline: auto;
  }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .premium-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .service-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-card img {
    height: 360px;
  }

  .footer-glass {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .developer-credit {
    padding-top: 0;
    padding-left: 28px;

    border-top: 0;
    border-left: 1px solid rgba(255, 226, 155, 0.12);

    text-align: right;
  }
}

/* =========================================================
   CELULARES CHICOS
========================================================= */
@media (max-width: 759px) {
  .lang-toggle {
    width: 100%;
    height: 46px;
    margin-top: 6px;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 13px;
  }

  .hero p {
    font-size: 15px;
  }

  .chat-bubble {
    display: none;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .whatsapp-icon {
    width: 29px;
    height: 29px;
  }
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}