@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --wine: #6d163c;
  --wine-dark: #320b20;
  --wine-light: #9e3a67;

  --gold: #d9ae57;
  --gold-light: #f4d995;

  --cream: #fff7ec;
  --soft-cream: #f9efe3;

  --dark: #160b12;
  --dark-soft: #26131e;

  --white: #ffffff;

  --text: #27151e;
  --muted: #745f69;

  --green: #22c55e;

  --radius-xl: 46px;
  --radius-lg: 32px;
  --radius-md: 22px;

  --shadow-soft:
    0 20px 50px rgba(52, 15, 35, 0.12);

  --shadow-pillow:
    0 35px 70px rgba(37, 9, 24, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.45);
}


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


html {
  scroll-behavior: smooth;
}


body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}


a {
  text-decoration: none;
  color: inherit;
}


button {
  font: inherit;
}


/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(238, 222, 204, 0.97);
  backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(109, 22, 60, 0.08);
}


/* =========================================
   REDES SOCIALES PREMIUM - HEADER
   Ajuste fino: alineadas al menÃº, sutiles y elegantes
========================================= */

.top-social {
  position: absolute;
  top: 11px;
  right: 4%;
  z-index: 3000;

  height: 40px;
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 11px;
  padding: 0;

  overflow: visible;
}


/* =========================================
   BASE DE CADA ICONO
========================================= */

.social-pillow {
  position: relative;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 40px;

  border-radius: 11px;

  background:
    linear-gradient(
      145deg,
      #fffaf2 0%,
      #f8eee1 100%
    );

  border:
    1px solid rgba(205, 164, 83, 0.28);

  box-shadow:
    0 4px 10px rgba(67, 35, 38, 0.09),
    0 1px 2px rgba(67, 35, 38, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);

  overflow: hidden;
  cursor: pointer;

  transform: translateY(0);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}


/* =========================================
   ICONOS SVG
========================================= */

.social-pillow svg {
  position: relative;
  z-index: 3;

  width: 19px;
  height: 19px;

  display: block;

  fill: currentColor;

  pointer-events: none;

  transform: translateY(0);

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}


/* =========================================
   COLORES DE LAS REDES
========================================= */

.facebook-social {
  color: #1877f2;
}

.instagram-social {
  color: #d62976;
}

.tiktok-social {
  color: #111111;
}

.youtube-social {
  color: #ff0000;
}


/* =========================================
   REFLEJO MUY SUTIL
========================================= */

.social-pillow::after {
  content: "";

  position: absolute;

  top: 3px;
  left: 6px;

  width: 27px;
  height: 9px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0)
    );

  opacity: 0.58;

  pointer-events: none;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* =========================================
   HALO DORADO DISCRETO
========================================= */

.social-pillow::before {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 9px;

  background:
    radial-gradient(
      circle,
      rgba(217, 174, 87, 0.12),
      rgba(217, 174, 87, 0.035) 52%,
      transparent 72%
    );

  opacity: 0.22;

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


/* =========================================
   HOVER
   LA ALMOHADA ASCIENDE
========================================= */

.social-pillow:hover {
  transform: translateY(-4px);

  background:
    linear-gradient(
      145deg,
      #fffdf8 0%,
      #f9efe1 100%
    );

  border-color: rgba(205, 164, 83, 0.55);

  box-shadow:
    0 9px 17px rgba(67, 35, 38, 0.13),
    0 0 10px rgba(205, 164, 83, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}


/* =========================================
   ICONO SE HUNDE
========================================= */

.social-pillow:hover svg {
  transform:
    translateY(3px)
    scale(0.96);

  filter:
    drop-shadow(
      0 -2px 2px
      rgba(205, 164, 83, 0.20)
    );
}


/* EL REFLEJO SUBE */

.social-pillow:hover::after {
  transform: translateY(-3px);

  opacity: 0.88;
}


/* EL HALO GANA UN POCO DE PRESENCIA */

.social-pillow:hover::before {
  opacity: 0.55;

  transform: scale(1.12);
}


/* =========================================
   CLICK
========================================= */

.social-pillow:active {
  transform:
    translateY(-1px)
    scale(0.96);

  box-shadow:
    inset 0 3px 6px rgba(67, 35, 38, 0.10);
}


/* =========================================
   ACCESIBILIDAD
========================================= */

.social-pillow:focus-visible {
  outline: 2px solid rgba(205, 164, 83, 0.75);
  outline-offset: 3px;
}


.nav-container {
  max-width: 1500px;
  height: 90px;          /* encabezado mÃƒÂ¡s delgado */
  margin: auto;
  padding: 0 4%;

  display: flex;
  align-items: center;
  gap: 22px;
}







.brand {
  display: flex;
  align-items: center;
  min-width: 320px;
  height: 62px;
  gap: 8px;

  /* mueve el logo hacia la izquierda */
  margin-left: -150px;
}

.brand img {
  width: 170px;     /* logo mÃƒÂ¡s grande */
  height: 115px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
}

.brand-title {
  display: block;

  font-family: "Playfair Display", serif;

  font-size: 19px;
  font-weight: 800;

  color: var(--wine-dark);
}


.brand-slogan {
  display: block;

  margin-top: 3px;

  font-size: 11px;

  color: var(--wine-light);

  letter-spacing: .4px;
}


.navigation {
  flex: 1;

  display: flex;
  justify-content: center;

  gap: 26px;
}


.navigation a {
  position: relative;

  font-size: 14px;
  font-weight: 600;

  color: var(--wine-dark);
}


.navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  border-radius: 4px;

  background: var(--gold);

  transition: .3s ease;
}


.navigation a:hover::after {
  width: 100%;
}


.header-actions {
  display: flex;
  gap: 10px;
}


.button {
  padding: 12px 18px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;

  transition: .3s ease;
}


.whatsapp {
  background: var(--green);
  color: white;
}


.call {
  background: var(--wine);
  color: white;
}


.button:hover {
  transform: translateY(-3px);
}


.menu-button {
  display: none;

  border: 0;
  background: transparent;

  font-size: 28px;

  color: var(--wine);
}


/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  padding: 150px 6% 90px;

  display: flex;
  align-items: center;

  overflow: hidden;

  /* IMAGEN ORIGINAL SIN COLOR ENCIMA */
  background-image:
    url("mariachisquito.jpg");

  background-size: cover;
 background-position: center -90px;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  right: -170px;
  top: 120px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(109,22,60,.15),
      rgba(217,174,87,.22)
    );

  filter: blur(2px);
}

.hero-container {
  position: relative;
  z-index: 2;

  max-width: 1500px;
  width: 100%;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   CONTENIDO CENTRADO DEL INICIO
========================================= */

.hero-content {
  max-width: 900px;
  width: 100%;

  margin: 0 auto;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.eyebrow {
  display: inline-flex;

  padding: 11px 20px;
  margin-bottom: 22px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);

  font-size: 13px;
  font-weight: 700;

  color: #ffffff;
}

.hero h1 {
  font-family: "Playfair Display", serif;

  font-size:
    clamp(52px, 6vw, 92px);

  line-height: .97;

  letter-spacing: -3px;

  color: #ffffff;
}


.hero h1 span {
  display: block;

  margin-top: 12px;

  font-size: .65em;

  line-height: 1.07;

color: var(--gold-light);
}


.hero-description {
  max-width: 700px;

  margin-top: 28px;

  font-size: 18px;
  line-height: 1.8;

color: rgba(255, 255, 255, 0.88);
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 14px;

  margin-top: 32px;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 17px 27px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #25d366,
      #15a34a
    );

  color: white;

  font-weight: 800;

  box-shadow:
    0 18px 35px rgba(22,163,74,.26);

  transition: .3s ease;
}


/* =========================================
   BOTONES PREMIUM DEL HERO
========================================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 18px;
  margin-top: 32px;
}


/* LOS DOS BOTONES CON LA MISMA MEDIDA */

.main-cta,
.secondary-cta {
  position: relative;

  width: 230px;
  height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;

  color: #ffffff;

  overflow: hidden;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}


/* =========================================
   WHATSAPP
   VERDE OSCURO ELEGANTE
========================================= */

.main-cta {
  background:
    linear-gradient(
      145deg,
      #175f48,
      #0d4938
    );

  border: 1px solid rgba(215, 194, 132, 0.50);

  box-shadow:
    0 12px 28px rgba(9, 53, 40, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -4px 7px rgba(0, 0, 0, 0.18);
}


/* =========================================
   LLAMAR
   VINO PREMIUM
========================================= */

.secondary-cta {
  background:
    linear-gradient(
      145deg,
      #7a2048,
      #4c102d
    );

  border: 1px solid rgba(230, 194, 112, 0.55);

  box-shadow:
    0 12px 28px rgba(60, 8, 33, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -4px 7px rgba(0, 0, 0, 0.20);
}


/* =========================================
   REFLEJO SUPERIOR DEL BOTÃ“N
========================================= */

.main-cta::before,
.secondary-cta::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 10%;

  width: 80%;
  height: 40%;

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.20),
      transparent
    );

  pointer-events: none;

  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}


/* =========================================
   EFECTO AL PASAR EL CURSOR
========================================= */

.main-cta:hover,
.secondary-cta:hover {
  transform:
    translateY(3px)
    scale(0.985);

  border-color: rgba(245, 214, 135, 0.90);
}


/* WHATSAPP CON MÃS BRILLO */

.main-cta:hover {
  box-shadow:
    0 5px 16px rgba(9, 53, 40, 0.40),
    0 0 24px rgba(207, 181, 105, 0.30),
    inset 0 4px 9px rgba(0, 0, 0, 0.25);
}


/* LLAMADA CON MÃS BRILLO */

.secondary-cta:hover {
  box-shadow:
    0 5px 16px rgba(60, 8, 33, 0.40),
    0 0 24px rgba(217, 174, 87, 0.32),
    inset 0 4px 9px rgba(0, 0, 0, 0.26);
}


/* EL BRILLO SUBE AL PASAR EL CURSOR */

.main-cta:hover::before,
.secondary-cta:hover::before {
  transform: translateY(-8px);
  opacity: 0.85;
}


/* =========================================
   EFECTO DE LETRA HUNDIDA
========================================= */

.main-cta:hover,
.secondary-cta:hover {
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.65),
    0 -1px 0 rgba(255, 255, 255, 0.10);
}


/* =========================================
   EFECTO AL HACER CLIC
========================================= */

.main-cta:active,
.secondary-cta:active {
  transform:
    translateY(5px)
    scale(0.97);

  box-shadow:
    inset 0 5px 12px rgba(0, 0, 0, 0.35);
} 
.trust-row {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 24px;

  margin-top: 28px;

  font-size: 13px;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.92);
}

/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 610px;
}


.image-pillow {
  position: absolute;

  width: 82%;
  height: 560px;

  right: 7%;
  top: 15px;

  padding: 14px;

  border-radius:
    70px 32px 70px 32px;

  background:
    rgba(255,255,255,.48);

  backdrop-filter: blur(20px);

  box-shadow: var(--shadow-pillow);

  transform: rotate(2.4deg);

  animation:
    pillowFloat 7s
    ease-in-out infinite;
}


.image-pillow img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius:
    58px 24px 58px 24px;
}


.image-badge {
  position: absolute;

  left: 32px;
  bottom: 34px;

  padding: 16px 20px;

  border-radius: 22px;

  background:
    rgba(20, 7, 14, .74);

  backdrop-filter: blur(14px);

  color: white;

  box-shadow:
    0 20px 40px rgba(0,0,0,.2);
}


.image-badge strong {
  display: block;

  font-family:
    "Playfair Display",
    serif;

  font-size: 19px;
}


.image-badge span {
  display: block;

  margin-top: 4px;

  font-size: 11px;

  opacity: .75;
}






@keyframes pillowFloat {

  0%,
  100% {
    transform:
      translateY(0)
      rotate(1deg);
  }

  50% {
    transform:
      translateY(-14px)
      rotate(-1deg);
  }

}


/* SECTIONS */

/* =========================================
   QUIÃ‰NES SOMOS - DISEÃ‘O PREMIUM
========================================= */

.about-section {
  position: relative;

  min-height: 100vh;

  padding:
    140px 6%
    150px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #fff8ee,
      #f7eadc
    );
}


/* CONTENEDOR PRINCIPAL */

.about-layout {
  width: 100%;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: center;
}


/* =========================================
   IMAGEN IZQUIERDA
========================================= */

.about-image {
  position: relative;
  z-index: 2;

  width: 200%;
  max-width: 600px;
  height: 700px;

  object-fit: cover;

  border-radius: 35px 18px 35px 18px;

  box-shadow:
    0 25px 55px rgba(61, 16, 39, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.70);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.about-image-wrapper {
  position: relative;

  min-height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;
}

.about-image-caption {
  position: relative;

  width: 100%;
  margin-top: 5px;

  text-align: center;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;

  color: var(--wine);

  text-transform: uppercase;
}

/* EFECTO FLOTANTE DE IMAGEN */

.about-image:hover {
  transform:
    translateY(-10px)
    scale(1.015);

  box-shadow:
    0 42px 90px rgba(61, 16, 39, 0.28),
    0 0 28px rgba(217,174,87,.22);
}


/* BRILLO DETRÃS DE LA FOTO */

.about-image-glow {
  position: absolute;

  width: 75%;
  height: 75%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,174,87,.32),
      rgba(109,22,60,.09),
      transparent 68%
    );

  filter: blur(45px);

  z-index: 1;
}


/* =========================================
   CONTENIDO DERECHO
========================================= */

.about-content {
  max-width: 680px;
}


.about-content .mini-title {
  margin-bottom: 12px;
}


.about-content h2 {
  margin-top: -45px;     /* sube el tÃ­tulo */
  margin-bottom: 24px;

  font-family: "Playfair Display", serif;

  font-size: clamp(34px, 3.5vw, 50px); /* mÃ¡s pequeÃ±o */
  line-height: 1.08;

  color: var(--wine-dark);

  text-align: center;
}


/* TARJETA DE TEXTO */

.about-card {
  position: relative;

  padding:
    45px 45px 48px;

  border-radius: 38px;

  background:
    rgba(255,255,255,.78);

  border:
    1px solid
    rgba(255,255,255,.92);

  backdrop-filter:
    blur(20px);

  box-shadow:
    0 28px 60px
    rgba(68, 19, 41, .13),
    inset
    0 1px 0
    rgba(255,255,255,.95);
}


.about-card p {
  margin-bottom: 20px;

  font-size: 17px;
  line-height: 1.85;

  color: var(--muted);
}


/* =========================================
   BOTÃ“N CONTRATAR MARIACHI
========================================= */

.about-cta {
  position: relative;

  width: 245px;
  height: 58px;

 margin: 25px auto 0;

 display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: .4px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #7a2048,
      #4c102d
    );

  border:
    1px solid
    rgba(230,194,112,.55);

  box-shadow:
    0 14px 30px
    rgba(60,8,33,.28),
    inset
    0 1px 0
    rgba(255,255,255,.22),
    inset
    0 -4px 8px
    rgba(0,0,0,.20);

  overflow: hidden;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}


/* BRILLO SUPERIOR */

.about-cta::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 10%;

  width: 80%;
  height: 40%;

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.22),
      transparent
    );

  transition:
    transform .28s ease,
    opacity .28s ease;
}


/* HOVER */

.about-cta:hover {
  transform:
    translateY(4px)
    scale(.985);

  border-color:
    rgba(245,214,135,.95);

  box-shadow:
    0 5px 16px
    rgba(60,8,33,.38),
    0 0 25px
    rgba(217,174,87,.36),
    inset
    0 4px 10px
    rgba(0,0,0,.24);

  text-shadow:
    0 2px 2px
    rgba(0,0,0,.7);
}


/* BRILLO SUBE */

.about-cta:hover::before {
  transform:
    translateY(-8px);

  opacity: .9;
}


/* CLICK */

.about-cta:active {
  transform:
    translateY(6px)
    scale(.97);

  box-shadow:
    inset
    0 5px 12px
    rgba(0,0,0,.35);
}

.section-container {
  max-width: 1400px;

  margin: auto;
}


.section-light {
  background:
    linear-gradient(
      180deg,
      #fff8ee,
      #f9ecdf
    );
}


.section-dark {
  background:
    radial-gradient(
      circle at top right,
      #6d163c,
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #140910,
      #2d1020
    );

  color: white;
}


.two-columns {
  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap: 80px;

  align-items: center;
}


.mini-title {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  color: var(--wine);
}


.gold {
  color: var(--gold-light);
}


.section-heading h2,
.center-heading h2,
.contact-section h2 {
  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(38px, 5vw, 66px);

  line-height: 1.05;
}


.center-heading {
  max-width: 800px;

  margin:
    0 auto
    65px;

  text-align: center;
}


.center-heading p {
  margin-top: 15px;

  line-height: 1.7;

  opacity: .75;
}


.dark-text {
  color: var(--wine-dark);
}


.pillow {
  border-radius: var(--radius-xl);

  box-shadow:
    var(--shadow-pillow);
}


.about-card {
  padding: 45px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid
    rgba(255,255,255,.8);

  backdrop-filter:
    blur(20px);
}


.about-card p {
  margin-bottom: 18px;

  font-size: 17px;
  line-height: 1.8;

  color: var(--muted);
}


.text-link {
  font-weight: 800;

  color: var(--wine);
}


/* =========================================
   SERVICIOS PREMIUM
========================================= */

.services-premium {
  position: relative;

  padding: 105px 6% 110px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(217, 174, 87, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(109, 22, 60, 0.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #fff9ef,
      #f6eadf
    );
}


/* TÃTULO */

.services-heading {
  max-width: 820px;

  margin: 0 auto 55px;

  text-align: center;
}


.services-kicker {
  display: inline-block;

  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;

  color: var(--wine);
}


.services-heading h2 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.08;

  color: var(--wine-dark);
}


.services-heading p {
  max-width: 700px;

  margin: 18px auto 0;

  font-size: 16px;
  line-height: 1.75;

  color: var(--muted);
}


/* GRID */

.services-grid-premium {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}


/* TARJETA */

.service-premium-card {
  position: relative;

  min-height: 310px;

  padding: 34px;

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.95),
      rgba(255,248,239,.78)
    );

  border:
    1px solid
    rgba(217,174,87,.28);

  box-shadow:
    0 22px 45px
    rgba(69, 21, 43, .11),
    inset
    0 1px 0
    rgba(255,255,255,.95);

  overflow: hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


.service-premium-card::before {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -35px;
  top: -35px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,174,87,.25),
      transparent 68%
    );

  transition:
    transform .35s ease,
    opacity .35s ease;
}


/* HOVER */

.service-premium-card:hover {
  transform:
    translateY(-10px)
    scale(1.01);

  border-color:
    rgba(217,174,87,.60);

  box-shadow:
    0 32px 65px
    rgba(69,21,43,.16),
    0 0 24px
    rgba(217,174,87,.18);
}


.service-premium-card:hover::before {
  transform: scale(1.18);
}


/* ICONO */

.service-premium-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 20px;

  font-size: 25px;

  background:
    linear-gradient(
      145deg,
      #f5dfaa,
      #d6a84d
    );

  box-shadow:
    0 12px 25px
    rgba(217,174,87,.22);
}


/* TITULO DE TARJETA */

.service-premium-card h3 {
  font-family:
    "Playfair Display",
    serif;

  font-size: 24px;

  line-height: 1.2;

  color: var(--wine-dark);
}


/* TEXTO */

.service-premium-card p {
  margin-top: 14px;

  font-size: 15px;
  line-height: 1.7;

  color: var(--muted);
}


/* ENLACE */

.service-link {
  display: inline-block;

  margin-top: 20px;

  font-size: 14px;
  font-weight: 800;

  color: var(--wine);

  transition:
    transform .25s ease,
    color .25s ease;
}


.service-link:hover {
  transform: translateX(5px);

  color: #9a6d25;
}


/* =========================================
   BOTÃ“N LLÃMANOS
========================================= */

.services-call-area {
  display: flex;

  justify-content: flex-end;

  margin-top: 38px;
}


.services-call-button {
  position: relative;

  width: 220px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #7a2048,
      #4c102d
    );

  border:
    1px solid
    rgba(230,194,112,.60);

  box-shadow:
    0 14px 30px
    rgba(60,8,33,.28),
    inset
    0 1px 0
    rgba(255,255,255,.22),
    inset
    0 -4px 8px
    rgba(0,0,0,.20);

  overflow: hidden;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}


.services-call-button::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 10%;

  width: 80%;
  height: 40%;

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.22),
      transparent
    );

  transition:
    transform .28s ease,
    opacity .28s ease;
}


/* EFECTO AL PASAR CURSOR */

.services-call-button:hover {
  transform:
    translateY(4px)
    scale(.985);

  border-color:
    rgba(245,214,135,.95);

  box-shadow:
    0 5px 16px
    rgba(60,8,33,.38),
    0 0 25px
    rgba(217,174,87,.36),
    inset
    0 4px 10px
    rgba(0,0,0,.24);

  text-shadow:
    0 2px 2px
    rgba(0,0,0,.70);
}


.services-call-button:hover::before {
  transform: translateY(-8px);

  opacity: .9;
}


.services-call-button:active {
  transform:
    translateY(6px)
    scale(.97);

  box-shadow:
    inset
    0 5px 12px
    rgba(0,0,0,.35);
}

/* ZONES */

.zones-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(217,174,87,.2),
      transparent 30%
    ),
    #fff7ec;
}


.zone-grid {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 16px;
}


.zone-pill {
  padding: 17px 23px;

  border-radius: 22px;

  background:
    rgba(255,255,255,.77);

  border:
    1px solid
    rgba(109,22,60,.07);

  box-shadow:
    0 16px 35px
    rgba(77,27,48,.09),
    inset
    0 1px 0
    white;

  font-weight: 700;

  color: var(--wine);

  transition: .3s;
}


.zone-pill:hover {
  transform:
    translateY(-6px);

  background:
    var(--wine);

  color: white;
}


/* GALLERY */

/* =========================================
   GALERÃA PREMIUM
========================================= */

.gallery-premium {
  position: relative;

  padding: 95px 6% 115px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(217,174,87,.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(109,22,60,.10),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #fffaf2,
      #f4e7dc
    );
}


/* TÃTULO DE GALERÃA */

.gallery-heading {
  max-width: 820px;

  margin: 0 auto 45px;

  text-align: center;
}


.gallery-kicker {
  display: inline-block;

  margin-bottom: 9px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;

  color: var(--wine);
}


.gallery-heading h2 {
  margin: 0;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(34px, 3.8vw, 50px);

  line-height: 1.08;

  color: var(--wine-dark);
}


.gallery-heading p {
  max-width: 680px;

  margin:
    16px auto 0;

  font-size: 15px;
  line-height: 1.7;

  color: var(--muted);
}


/* =========================================
   GRID DE 12 IMÃGENES
========================================= */

.gallery-grid-premium {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


/* TODAS LAS IMÃGENES MISMA MEDIDA */

.gallery-item {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;

  margin: 0;

  overflow: hidden;

  border-radius: 26px;

  background: #ffffff;

  border:
    1px solid
    rgba(217,174,87,.25);

  box-shadow:
    0 20px 40px
    rgba(63,19,40,.11),
    inset
    0 1px 0
    rgba(255,255,255,.9);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .55s ease,
    filter .45s ease;
}


/* SOMBRA SUAVE ENCIMA */

.gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(50,11,32,.12)
    );

  opacity: .65;

  transition:
    opacity .35s ease;
}


/* EFECTO PREMIUM */

.gallery-item:hover {
  transform:
    translateY(-8px)
    scale(1.01);

  border-color:
    rgba(217,174,87,.60);

  box-shadow:
    0 30px 58px
    rgba(63,19,40,.16),
    0 0 22px
    rgba(217,174,87,.18);
}


.gallery-item:hover img {
  transform: scale(1.07);

  filter:
    contrast(1.03)
    saturate(1.04);
}


.gallery-item:hover::after {
  opacity: .30;
}

@media (max-width: 1100px) {

  .gallery-grid-premium {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


@media (max-width: 800px) {

  .gallery-grid-premium {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 520px) {

  .gallery-premium {
    padding:
      80px 18px
      95px;
  }

  .gallery-grid-premium {
    grid-template-columns: 1fr;
  }

  .gallery-heading h2 {
    font-size:
      clamp(31px, 9vw, 42px);
  }

}

/* CTA */

.cta-section {
  padding:
    75px 6%;

  background:
    linear-gradient(
      180deg,
      var(--dark),
      #311021
    );
}


.cta-pillow {
  max-width: 1300px;

  margin: auto;

  padding: 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  border-radius: 50px;

  color: white;

  background:
    linear-gradient(
      135deg,
      rgba(109,22,60,.88),
      rgba(149,61,99,.78)
    );

  border:
    1px solid
    rgba(255,255,255,.16);

  box-shadow:
    0 35px 75px
    rgba(0,0,0,.28),
    inset
    0 1px 0
    rgba(255,255,255,.24);
}


.cta-pillow span {
  color: var(--gold-light);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;
}


.cta-pillow h2 {
  margin-top: 10px;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(35px,4vw,54px);
}


.cta-pillow p {
  margin-top: 10px;

  opacity: .78;
}


.cta-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


.secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 17px 25px;

  border-radius: 999px;

  background:
    rgba(255,255,255,.1);

  border:
    1px solid
    rgba(255,255,255,.28);

  color: white;

  font-weight: 700;
}


/* =========================================
   CONTACTO PREMIUM
========================================= */

.contact-premium {
  position: relative;

  padding:
    100px 6%
    110px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(217,174,87,.17),
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(109,22,60,.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #fff9f0,
      #f3e2d7
    );
}


/* TITULO */

.contact-heading {
  max-width: 820px;

  margin:
    0 auto
    50px;

  text-align: center;
}


.contact-kicker {
  display: inline-block;

  margin-bottom: 9px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;

  color: var(--wine);
}


.contact-heading h2 {
  margin: 0;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(34px, 3.8vw, 50px);

  line-height: 1.08;

  color: var(--wine-dark);
}


.contact-heading p {
  max-width: 690px;

  margin:
    17px auto 0;

  font-size: 15px;
  line-height: 1.75;

  color: var(--muted);
}


/* DOS COLUMNAS */

.contact-premium-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 28px;

  align-items: stretch;
}


/* =========================================
   TARJETA DE INFORMACION
========================================= */

.contact-information-card {
  padding:
    45px;

  border-radius:
    40px;

  background:
    rgba(255,255,255,.82);

  border:
    1px solid
    rgba(217,174,87,.28);

  box-shadow:
    0 28px 60px
    rgba(65,18,40,.12),
    inset
    0 1px 0
    rgba(255,255,255,.96);

  backdrop-filter:
    blur(18px);
}


.contact-small-title {
  display: block;

  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2.5px;

  color: var(--wine);
}


.contact-information-card h3 {
  max-width: 540px;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(29px,3vw,40px);

  line-height: 1.13;

  color:
    var(--wine-dark);
}


.contact-information-card > p {
  max-width: 570px;

  margin-top: 17px;

  font-size: 15px;
  line-height: 1.75;

  color:
    var(--muted);
}


/* =========================================
   DATOS DE CONTACTO
========================================= */

.contact-details {
  display: grid;

  gap: 13px;

  margin-top: 30px;
}


.contact-detail {
  display: flex;
  align-items: center;

  gap: 15px;

  padding:
    13px 16px;

  border-radius:
    20px;

  background:
    rgba(255,248,239,.78);

  border:
    1px solid
    rgba(217,174,87,.16);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.contact-detail:hover {
  transform:
    translateX(5px);

  box-shadow:
    0 10px 25px
    rgba(75,20,42,.08);
}


.contact-detail-icon {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius:
    16px;

  background:
    linear-gradient(
      145deg,
      #f6dfaa,
      #d8a94d
    );

  box-shadow:
    0 10px 22px
    rgba(217,174,87,.22);
}


.contact-detail span {
  display: block;

  margin-bottom: 2px;

  font-size: 11px;

  color:
    var(--muted);
}


.contact-detail strong {
  font-size: 15px;

  color:
    var(--wine-dark);
}


/* =========================================
   BOTONES CONTACTO
========================================= */

.contact-buttons {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;

  margin-top: 30px;
}


.contact-button {
  position: relative;

  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius:
    18px;

  overflow: hidden;

  font-size: 14px;
  font-weight: 800;

  letter-spacing:
    .3px;

  color: #ffffff;

  border:
    1px solid
    rgba(230,194,112,.60);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}


/* MENSAJE */

.contact-message-button {
  background:
    linear-gradient(
      145deg,
      #245f53,
      #153d35
    );

  box-shadow:
    0 14px 30px
    rgba(17,67,57,.25),
    inset
    0 1px 0
    rgba(255,255,255,.20),
    inset
    0 -4px 8px
    rgba(0,0,0,.19);
}


/* LLAMADA */

.contact-call-button {
  background:
    linear-gradient(
      145deg,
      #7a2048,
      #4c102d
    );

  box-shadow:
    0 14px 30px
    rgba(60,8,33,.27),
    inset
    0 1px 0
    rgba(255,255,255,.20),
    inset
    0 -4px 8px
    rgba(0,0,0,.20);
}


/* BRILLO */

.contact-button::before {
  content: "";

  position: absolute;

  top: 5px;
  left: 10%;

  width: 80%;
  height: 40%;

  border-radius:
    14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.22),
      transparent
    );

  transition:
    transform .28s ease,
    opacity .28s ease;
}


/* HUNDIMIENTO */

.contact-button:hover {
  transform:
    translateY(4px)
    scale(.985);

  border-color:
    rgba(245,214,135,.95);

  text-shadow:
    0 2px 2px
    rgba(0,0,0,.70);
}


.contact-message-button:hover {
  box-shadow:
    0 5px 16px
    rgba(17,67,57,.38),
    0 0 25px
    rgba(217,174,87,.32),
    inset
    0 4px 10px
    rgba(0,0,0,.24);
}


.contact-call-button:hover {
  box-shadow:
    0 5px 16px
    rgba(60,8,33,.38),
    0 0 25px
    rgba(217,174,87,.36),
    inset
    0 4px 10px
    rgba(0,0,0,.24);
}


.contact-button:hover::before {
  transform:
    translateY(-8px);

  opacity:
    .9;
}


/* CLICK */

.contact-button:active {
  transform:
    translateY(6px)
    scale(.97);

  box-shadow:
    inset
    0 5px 12px
    rgba(0,0,0,.35);
}


/* =========================================
   MAPA PREMIUM
========================================= */

.contact-map-card {
  padding:
    18px;

  border-radius:
    40px;

  background:
    rgba(255,255,255,.78);

  border:
    1px solid
    rgba(217,174,87,.28);

  box-shadow:
    0 28px 60px
    rgba(65,18,40,.12),
    inset
    0 1px 0
    rgba(255,255,255,.95);

  backdrop-filter:
    blur(18px);
}


.map-top {
  height: 75px;

  padding:
    7px 12px 13px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.map-top span {
  font-size: 10px;
  font-weight: 800;

  letter-spacing:
    2px;

  color:
    var(--wine);
}


.map-top h3 {
  margin-top:
    3px;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    24px;

  color:
    var(--wine-dark);
}


/* PUNTO UBICACION */

.map-pulse {
  position: relative;

  width: 15px;
  height: 15px;

  margin-right:
    12px;

  border-radius:
    50%;

  background:
    var(--wine);

  box-shadow:
    0 0 0
    8px
    rgba(109,22,60,.10);
}


.map-pulse::before {
  content: "";

  position:
    absolute;

  inset: -9px;

  border:
    2px solid
    rgba(109,22,60,.25);

  border-radius:
    50%;

  animation:
    mapPulse 2s
    infinite;
}


@keyframes mapPulse {

  0% {
    transform:
      scale(.7);

    opacity:
      .8;
  }

  100% {
    transform:
      scale(1.5);

    opacity:
      0;
  }

}


/* MAPA */

.map-frame {
  width: 100%;

  height: 425px;

  overflow: hidden;

  border-radius:
    27px;

  box-shadow:
    inset
    0 0 0
    1px
    rgba(255,255,255,.4);
}


.map-frame iframe {
  width: 100%;
  height: 100%;
}


/* =========================================
   COBERTURA PREMIUM
========================================= */

.coverage-premium {
  padding:
    85px 6%
    100px;

  background:
    linear-gradient(
      145deg,
      #2b0d1c,
      #50132f
    );

  color:
    #ffffff;
}


.coverage-heading {
  max-width:
    760px;

  margin:
    0 auto
    42px;

  text-align:
    center;
}


.coverage-heading span {
  display:
    block;

  margin-bottom:
    8px;

  font-size:
    11px;
  font-weight:
    800;

  letter-spacing:
    3px;

  color:
    var(--gold-light);
}


.coverage-heading h2 {
  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(32px,3.5vw,47px);

  line-height:
    1.08;
}


.coverage-heading p {
  margin-top:
    14px;

  font-size:
    14px;
  line-height:
    1.7;

  color:
    rgba(255,255,255,.68);
}


/* ZONAS */

.coverage-grid {
  display:
    flex;

  flex-wrap:
    wrap;

  justify-content:
    center;

  gap:
    13px;
}


.coverage-pill {
  padding:
    14px 19px;

  border-radius:
    17px;

  background:
    rgba(255,255,255,.08);

  border:
    1px solid
    rgba(244,217,149,.24);

  backdrop-filter:
    blur(12px);

  font-size:
    13px;

  color:
    rgba(255,255,255,.88);

  box-shadow:
    inset
    0 1px 0
    rgba(255,255,255,.08);

  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.coverage-pill:hover {
  transform:
    translateY(-5px);

  background:
    rgba(217,174,87,.15);

  box-shadow:
    0 13px 27px
    rgba(0,0,0,.20),
    0 0 18px
    rgba(217,174,87,.13);

  color:
    #ffffff;
}



/* FOOTER */

.footer {
  padding:
    55px 6% 90px;

  background:
    #10070c;

  color:
    rgba(255,255,255,.72);
}


.footer-inner {
  max-width: 1400px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;
}


.footer strong {
  color: white;

  font-family:
    "Playfair Display",
    serif;

  font-size: 22px;
}


.footer p {
  margin-top: 7px;

  font-size: 13px;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  font-size: 13px;
}





/* =========================================
   CONTACTO FLOTANTE PREMIUM
========================================= */

.floating-contact {
  position: fixed;

  right: 24px;
  bottom: 28px;

  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 13px;
}


/* BOTÓN BASE */

.floating-btn {
  position: relative;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  text-decoration: none;

  border: 1px solid rgba(255,255,255,.30);

  box-shadow:
    0 8px 18px rgba(38,20,28,.18),
    inset 0 2px 2px rgba(255,255,255,.22),
    inset 0 -4px 7px rgba(0,0,0,.13);

  transform: translateY(0);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


/* ICONOS */

.floating-btn svg {
  width: 26px;
  height: 26px;

  fill: #ffffff;

  transition:
    transform .25s ease;
}


/* WHATSAPP */

.floating-whatsapp {
  background:
    linear-gradient(
      145deg,
      #2bd46f,
      #16a957
    );
}


/* LLAMADA */

.floating-call {
  background:
    linear-gradient(
      145deg,
      #8b1749,
      #651034
    );
}


/* =========================================
   EFECTO AL PASAR EL CURSOR
========================================= */

.floating-btn:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 24px rgba(38,20,28,.23),
    0 0 14px rgba(217,174,87,.20),
    inset 0 2px 2px rgba(255,255,255,.25),
    inset 0 -4px 7px rgba(0,0,0,.15);
}


/* ICONO SE HUNDE */

.floating-btn:hover svg {
  transform: translateY(3px) scale(.95);
}


/* CLICK */

.floating-btn:active {
  transform:
    translateY(-1px)
    scale(.95);
}





/* =====================================================
   FOOTER PROFESIONAL - ADGE
===================================================== */

.footer-adge {
  width: 100%;

  padding: 35px 20px 24px;

  text-align: center;

  background: var(--wine-dark);

  border-top: 3px solid var(--gold);
}


.footer-adge-content {
  max-width: 1100px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* LOGO */

.footer-adge-logo {
  width: 115px;
  height: auto;

  margin-bottom: 8px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 5px 10px rgba(0,0,0,.18)
    );
}


/* ADGE */

.footer-adge h3 {
  margin: 3px 0 2px;

  font-size: 20px;
  font-weight: 800;

  letter-spacing: 2px;

  color: var(--gold);
}


/* SLOGAN */

.footer-adge-slogan {
  margin: 0;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1px;

  color: rgba(255,255,255,.88);
}


/* LÍNEA DORADA */

.footer-gold-line {
  width: 75px;
  height: 2px;

  margin: 17px auto 14px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      transparent
    );
}


/* DERECHOS */

.footer-copyright {
  margin: 0 0 5px;

  font-size: 11px;

  color: rgba(255,255,255,.76);
}


/* DESARROLLADO POR ADGE */

.footer-developed {
  margin: 0;

  font-size: 10px;

  color: rgba(255,255,255,.60);
}


.footer-developed strong {
  color: var(--gold);
  font-weight: 600;
}






/* =====================================================
   COBERTURA - SEO LOCAL ELEGANTE
===================================================== */

.coverage-heading {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 25px;
  text-align: center;
}

.coverage-heading h2 {
  margin-bottom: 15px;
}

.coverage-intro {
  max-width: 900px;
  margin: 0 auto 45px;
  line-height: 1.8;
}

.coverage-text {
  text-align: left;
  columns: 2;
  column-gap: 65px;
}

.coverage-text h3 {
  break-after: avoid;
  margin: 0 0 8px;
  color: var(--wine-dark);
  font-size: 18px;
}

.coverage-text p {
  break-inside: avoid;
  margin: 0 0 28px;
  line-height: 1.75;
  font-size: 14px;
  color: #5d5053;
}

.coverage-links {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 13px;
  align-items: center;
}

.coverage-links a {
  color: var(--wine-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.coverage-links a:hover {
  color: var(--gold);
}

.seo-hashtags {
  max-width: 1000px;
  margin: 35px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(185,145,70,.25);
}

.seo-hashtags p {
  margin: 0;
  font-size: 10px;
  line-height: 1.9;
  color: rgba(70,50,55,.55);
  text-align: center;
}

@media (max-width: 768px) {
  .coverage-text {
    columns: 1;
  }
}


/* =========================================
   AJUSTE DEL TÍTULO COBERTURA
========================================= */

#cobertura {
  scroll-margin-top: 80px;
}

.coverage-heading {
  padding-top: 90px;
}



/* ============================================================
   AJUSTE FINAL RESPONSIVE
   MARIAHI REAL DE JALISCO
   CELULARES Y TABLETS
============================================================ */


/* ============================================================
   TABLETS Y PANTALLAS PEQUEÑAS
============================================================ */

@media (max-width: 900px) {

  /* ---------------- HEADER ---------------- */

  .header {
    width: 100%;
  }

  .nav-container {
    width: 100%;
    min-height: 86px;
    height: 86px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 12px;
  }


  /* LOGO */

  .brand {
    min-width: 0;
    height: 86px;

    margin-left: 0;

    display: flex;
    align-items: center;

    gap: 8px;
  }

  .brand img {
    width: 92px;
    height: 76px;

    object-fit: contain;

    flex-shrink: 0;
  }

  .brand-title {
    font-size: 15px;

    line-height: 1.05;
  }

  .brand-slogan {
    max-width: 145px;

    margin-top: 3px;

    font-size: 8px;
    line-height: 1.2;
  }


  /* BOTÓN HAMBURGUESA */

  .menu-button {
    display: block;

    margin-left: auto;

    font-size: 27px;

    color: var(--wine-dark);

    cursor: pointer;
  }


  /* MENÚ DESPLEGABLE */

  .navigation {
    position: absolute;

    top: 86px;
    left: 14px;
    right: 14px;

    z-index: 5000;

    display: none;

    flex-direction: column;

    gap: 0;

    padding: 14px;

    border-radius: 20px;

    background:
      rgba(255, 247, 236, 0.98);

    border:
      1px solid rgba(217, 174, 87, 0.20);

    box-shadow:
      0 18px 45px rgba(50, 11, 32, 0.18);

    backdrop-filter: blur(18px);
  }


  .navigation.active {
    display: flex;
  }


  .navigation a {
    width: 100%;

    padding: 13px 15px;

    border-radius: 12px;

    font-size: 14px;

    text-align: left;

    color: var(--wine-dark);

    transition:
      background .25s ease,
      padding-left .25s ease;
  }


  .navigation a:hover {
    padding-left: 20px;

    background:
      rgba(217, 174, 87, 0.11);
  }


  .navigation a::after {
    display: none;
  }


  /* ============================================================
     REDES SOCIALES DEL HEADER
  ============================================================ */

  .top-social,
  .nav-socials {
    position: static;

    height: auto;
    min-height: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin: 0 5px 0 auto;

    padding: 0;
  }


  .social-pillow,
  .nav-social {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 9px;

    box-shadow:
      0 3px 8px rgba(63, 18, 39, 0.08),
      inset 0 1px 0 rgba(255,255,255,.95);
  }


  .social-pillow svg,
  .nav-social svg {
    width: 16px;
    height: 16px;
  }


  /* ============================================================
     INICIO / HERO
  ============================================================ */

  .hero {
    min-height: 100svh;

    padding:
      135px 20px
      80px;

    background-position: center center;
    background-size: cover;

    display: flex;
    align-items: center;
  }


  .hero-container {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
  }


  .hero-content {
    width: 100%;
    max-width: 720px;

    margin: auto;

    text-align: center;
  }


  .hero h1 {
    font-size:
      clamp(43px, 11vw, 65px);

    line-height: 1;

    letter-spacing: -2px;
  }


  .hero h1 span {
    margin-top: 10px;

    font-size: .58em;

    line-height: 1.08;
  }


  .hero-description {
    max-width: 620px;

    margin:
      22px auto 0;

    font-size: 15px;
    line-height: 1.65;
  }


  .hero-buttons {
    width: 100%;

    justify-content: center;

    gap: 12px;

    margin-top: 25px;
  }


  .main-cta,
  .secondary-cta {
    width: 205px;
    height: 53px;

    font-size: 13px;
  }


  /* ============================================================
     QUIÉNES SOMOS
  ============================================================ */

  .about-section {
    min-height: auto;

    padding:
      90px 20px
      95px;
  }


  .about-layout {
    display: grid;

    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-image-wrapper {
    width: 100%;
    min-height: 0;

    margin: auto;
  }


  .about-image {
    width: 100%;

    max-width: 480px;
    height: 420px;

    margin: auto;

    object-fit: cover;
  }


  .about-image-caption {
    margin-top: 10px;

    font-size: 11px;

    letter-spacing: 2px;
  }


  .about-content {
    width: 100%;
    max-width: 650px;

    margin: auto;

    text-align: center;
  }


  .about-content h2 {
    margin-top: 0;

    font-size:
      clamp(32px, 8vw, 45px);

    line-height: 1.08;
  }


  .about-card {
    padding: 32px 25px;

    text-align: left;
  }


  .about-card p {
    font-size: 15px;

    line-height: 1.7;
  }


  .about-cta {
    width: 220px;
    height: 54px;

    margin:
      23px auto 0;

    font-size: 13px;
  }


  /* ============================================================
     SERVICIOS
  ============================================================ */

  .services-premium {
    padding:
      90px 20px
      95px;
  }


  .services-heading {
    margin-bottom: 38px;
  }


  .services-heading h2 {
    font-size:
      clamp(32px, 8vw, 45px);
  }


  .services-heading p {
    font-size: 14px;
  }


  .services-grid-premium {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 18px;
  }


  .service-premium-card {
    min-height: auto;

    padding: 27px;

    border-radius: 27px;
  }


  .service-premium-card h3 {
    font-size: 21px;
  }


  .service-premium-card p {
    font-size: 14px;
  }


  .services-call-area {
    justify-content: center;
  }


  /* ============================================================
     GALERÍA
  ============================================================ */

  .gallery-premium {
    padding:
      90px 20px
      100px;
  }


  .gallery-heading h2 {
    font-size:
      clamp(31px, 8vw, 44px);
  }


  .gallery-grid-premium {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 14px;
  }


  .gallery-item {
    aspect-ratio: 4 / 3;

    border-radius: 20px;
  }


  /* ============================================================
     CTA
  ============================================================ */

  .cta-section {
    padding:
      60px 20px;
  }


  .cta-pillow {
    padding:
      38px 25px;

    flex-direction: column;

    text-align: center;

    border-radius: 35px;
  }


  .cta-buttons {
    justify-content: center;
  }


  /* ============================================================
     CONTACTO
  ============================================================ */

  .contact-premium {
    padding:
      90px 20px
      95px;
  }


  .contact-heading h2 {
    font-size:
      clamp(32px, 8vw, 45px);
  }


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

    gap: 25px;
  }


  .contact-information-card {
    padding:
      32px 26px;

    border-radius: 30px;
  }


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


  .contact-map-card {
    border-radius: 30px;
  }


  .map-frame {
    height: 360px;
  }


  /* ============================================================
     COBERTURA
  ============================================================ */

  #cobertura {
    scroll-margin-top: 115px;
  }


  .coverage-premium {
    padding:
      95px 20px
      90px;
  }


  .coverage-heading {
    width: 100%;
    max-width: 720px;

    margin:
      0 auto
      35px;

    padding-top: 20px;
  }


  .coverage-heading h2 {
    font-size:
      clamp(31px, 8vw, 44px);
  }


  .coverage-text {
    columns: 1;

    max-width: 700px;

    margin: auto;
  }


  .seo-hashtags {
    max-width: 100%;
  }


  /* ============================================================
     FOOTER
  ============================================================ */

  .footer-adge,
  .footer-premium,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }


  .footer-bottom,
  .footer-inner {
    flex-direction: column;

    text-align: center;

    gap: 14px;
  }

}



/* ============================================================
   ============================================================
   RESPONSIVE COMPLETO
   MARIACHI REAL DE JALISCO
   TABLETS + CELULARES
   ============================================================
   ============================================================ */


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

  /* ---------------- HEADER ---------------- */

  .nav-container {
    position: relative;

    width: 100%;
    height: 92px;
    min-height: 92px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 12px;
  }


  /* LOGO */

  .brand {
    min-width: 0;
    height: 92px;

    margin-left: 0;

    display: flex;
    align-items: center;

    gap: 8px;
  }


  .brand img {
    width: 115px;
    height: 88px;

    object-fit: contain;

    flex-shrink: 0;
  }


  .brand-title {
    font-size: 16px;
  }


  .brand-slogan {
    font-size: 9px;
  }


  /* ---------------- BOTÓN MENÚ ---------------- */

  .menu-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 0;

    border: 0;

    border-radius: 13px;

    background:
      linear-gradient(
        145deg,
        #fffaf2,
        #f5eadf
      );

    color: var(--wine-dark);

    font-size: 25px;

    box-shadow:
      0 5px 14px rgba(50, 11, 32, .12),
      inset 0 1px 0 rgba(255,255,255,.95);

    cursor: pointer;

    z-index: 5002;
  }


  /* ---------------- MENÚ ---------------- */

  .navigation {
    position: absolute;

    top: 92px;
    left: 18px;
    right: 18px;

    z-index: 5000;

    display: none;

    flex-direction: column;

    gap: 3px;

    padding: 15px;

    border-radius: 22px;

    background:
      rgba(255, 248, 239, .98);

    border:
      1px solid rgba(217,174,87,.22);

    box-shadow:
      0 22px 50px rgba(50,11,32,.20);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }


  .navigation.active {
    display: flex;
  }


  .navigation a {
    width: 100%;

    padding: 14px 16px;

    border-radius: 12px;

    text-align: center;

    font-size: 14px;
    font-weight: 700;

    color: var(--wine-dark);
  }


  .navigation a:hover {
    background:
      rgba(217,174,87,.12);
  }


  .navigation a::after {
    display: none;
  }


  /* ---------------- REDES ---------------- */

  .top-social,
  .nav-socials {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin: 0 8px 0 auto;

    padding: 0;

    height: auto;
  }


  .social-pillow,
  .nav-social {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    border-radius: 10px;
  }


  .social-pillow svg,
  .nav-social svg {
    width: 17px;
    height: 17px;
  }


  /* ==========================================================
     HERO TABLET
  ========================================================== */

  .hero {
    min-height: 100svh;

    padding:
      140px 28px
      80px;

    background-size: cover;

    background-position:
      center center;
  }


  .hero-container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }


  .hero-content {
    max-width: 750px;

    margin: auto;

    text-align: center;

    align-items: center;
  }


  .hero h1 {
    font-size:
      clamp(46px, 8vw, 68px);

    text-align: center;

    line-height: 1;
  }


  .hero h1 span {
    text-align: center;
  }


  .hero-description {
    max-width: 650px;

    margin:
      24px auto 0;

    font-size: 16px;

    text-align: center;
  }


  .hero-buttons {
    justify-content: center;
  }


  /* ==========================================================
     QUIÉNES SOMOS
  ========================================================== */

  .about-section {
    min-height: auto;

    padding:
      100px 25px
      105px;
  }


  .about-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-image-wrapper {
    width: 100%;
    min-height: 0;

    margin: auto;
  }


  .about-image {
    width: 100%;

    max-width: 500px;
    height: 430px;

    margin: auto;
  }


  .about-content {
    width: 100%;
    max-width: 720px;

    margin: auto;
  }


  .about-content h2 {
    margin-top: 0;

    text-align: center;
  }


  /* ==========================================================
     SERVICIOS
  ========================================================== */

  .services-grid-premium {
    grid-template-columns:
      repeat(2, 1fr);
  }


  /* ==========================================================
     GALERÍA
  ========================================================== */

  .gallery-grid-premium {
    grid-template-columns:
      repeat(2, 1fr);
  }


  /* ==========================================================
     CONTACTO
  ========================================================== */

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


  .map-frame {
    height: 390px;
  }


  /* ==========================================================
     COBERTURA
  ========================================================== */

  .coverage-text {
    columns: 1;
  }

}



/* ============================================================
   ============================================================
   CELULARES
   ============================================================
   ============================================================ */

@media (max-width: 650px) {


  /* ==========================================================
     HEADER
  ========================================================== */

  .header {
    width: 100%;

   background: rgba(238, 222, 204, 0.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }


  .nav-container {
    position: relative;

    width: 100%;

    height: 95px;
    min-height: 95px;

    margin: 0;

    padding:
      0 12px;

    display: flex;
    align-items: center;

    gap: 0;
  }


  /* ==========================================================
     LOGO
  ========================================================== */

  .brand {
    position: relative;

    width: 100%;
    height: 95px;

    min-width: 0;

    margin: 0;

    display: flex;
    align-items: center;
  }


  .brand img {
    width: 105px;
    height: 90px;

    margin-left: -10px;

    object-fit: contain;

    flex-shrink: 0;
  }


  /* ==========================================================
     NOMBRE + SLOGAN CENTRADOS
  ========================================================== */

  .brand > div {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
      translate(-50%, -50%);

    width: 190px;

    text-align: center;
  }


  .brand-title {
    display: block;

    width: 100%;

    font-family:
      "Playfair Display",
      serif;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.05;

    text-align: center;

    color:
      var(--wine-dark);
  }


  .brand-slogan {
    display: block;

    width: 100%;
    max-width: none;

    margin-top: 5px;

    font-size: 8px;

    line-height: 1.25;

    text-align: center;

    letter-spacing: .2px;

    color:
      var(--wine-light);
  }


  /* ==========================================================
     MENÚ HAMBURGUESA
  ========================================================== */

  .menu-button {
    position: absolute;

    right: 12px;
    top: 50%;

    transform:
      translateY(-50%);

    z-index: 6000;

    width: 41px;
    height: 41px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    border: 0;

    border-radius: 12px;

    background:
      linear-gradient(
        145deg,
        #fffaf3,
        #f3e7da
      );

    color:
      var(--wine-dark);

    font-size: 23px;
    line-height: 1;

    box-shadow:
      0 5px 13px rgba(61, 17, 38, .11),
      inset 0 1px 0 rgba(255,255,255,.95);

    cursor: pointer;
  }


  /* ==========================================================
     MENÚ QUE SE ABRE
  ========================================================== */

  .navigation {
    position: absolute;

    top: 95px;
    left: 10px;
    right: 10px;

    z-index: 5999;

    display: none;

    flex-direction: column;

    gap: 2px;

    padding: 12px;

    border-radius: 20px;

    background:
      rgba(255,249,241,.99);

    border:
      1px solid
      rgba(217,174,87,.24);

    box-shadow:
      0 20px 45px
      rgba(50,11,32,.22);
  }


  .navigation.active {
    display: flex;
  }


  .navigation a {
    width: 100%;

    padding:
      13px 14px;

    border-radius: 11px;

    text-align: center;

    font-size: 14px;
    font-weight: 700;

    color:
      var(--wine-dark);
  }


  .navigation a:hover {
    background:
      rgba(217,174,87,.12);
  }


  .navigation a::after {
    display: none;
  }


  /* ==========================================================
     REDES
     En celular las ocultamos para que el header no se deforme.
     Ya siguen disponibles en footer/redes de la web.
  ========================================================== */

  /* ==========================================================
   REDES SOCIALES EN CELULAR
========================================================== */

.top-social {
  position: absolute;

  left: 50%;
  bottom: 1px;
  right: auto;
  top: auto;

  transform: translateX(-50%);

  z-index: 5000;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  width: auto;
  height: 30px;
  min-height: 30px;

  margin: 0;
  padding: 0;

  overflow: visible;
}


.social-pillow {
  width: 29px;
  height: 29px;

  flex: 0 0 29px;

  border-radius: 8px;

  background:
    linear-gradient(
      145deg,
      #fffaf2,
      #f7ecdf
    );

  border:
    1px solid rgba(205,164,83,.25);

  box-shadow:
    0 3px 8px rgba(67,35,38,.08),
    inset 0 1px 0 rgba(255,255,255,.96);
}


.social-pillow svg {
  width: 14px;
  height: 14px;
}

  /* ==========================================================
     HERO
     FOTO DEL TAMAÑO DE LA PANTALLA
  ========================================================== */

  .hero {
    position: relative;

    width: 100%;

    /*
       95px = altura del header
    */
    height:
      calc(100svh - 95px);

    min-height:
      calc(100svh - 95px);

    margin-top: 95px;

    padding:
      30px 17px
      30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-image:
      url("mariachisquito.jpg");

    background-size: cover;

    background-position:
      center center;

    background-repeat:
      no-repeat;

    overflow: hidden;
  }


  /* Eliminamos el círculo decorativo gigante en móvil */

  .hero::before {
    width: 250px;
    height: 250px;

    right: -120px;
    top: 60px;

    opacity: .30;
  }


  .hero-container {
    width: 100%;
    height: 100%;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
  }


  .hero-content {
    width: 100%;
    max-width: 390px;

    margin: auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
  }


  /* ==========================================================
     PEQUEÑO TEXTO SUPERIOR
  ========================================================== */

  .eyebrow {
    padding:
      8px 13px;

    margin-bottom: 15px;

    font-size: 10px;

    text-align: center;
  }


  /* ==========================================================
     TÍTULO CENTRAL
  ========================================================== */

  .hero h1 {
    width: 100%;

    margin: 0 auto;

    font-size:
      clamp(35px, 11vw, 48px);

    line-height: 1;

    letter-spacing: -1px;

    text-align: center;
  }


  .hero h1 span {
    display: block;

    width: 100%;

    margin-top: 8px;

    font-size: .55em;

    line-height: 1.08;

    text-align: center;
  }


  /* ==========================================================
     DESCRIPCIÓN
  ========================================================== */

  .hero-description {
    width: 100%;
    max-width: 345px;

    margin:
      18px auto 0;

    font-size: 13px;

    line-height: 1.55;

    text-align: center;

    color:
      rgba(255,255,255,.93);

    text-shadow:
      0 2px 7px rgba(0,0,0,.55);
  }


  /* ==========================================================
     BOTONES INICIO
  ========================================================== */

  .hero-buttons {
    width: 100%;

    margin-top: 20px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 9px;
  }


  .main-cta,
  .secondary-cta {
    width: 100%;
    max-width: 255px;

    height: 49px;

    font-size: 12px;

    border-radius: 15px;
  }


  .trust-row {
    justify-content: center;

    gap: 8px;

    margin-top: 17px;

    font-size: 10px;

    text-align: center;
  }


  /* ==========================================================
     QUIÉNES SOMOS
  ========================================================== */

  .about-section {
    min-height: auto;

    padding:
      80px 16px
      85px;
  }


  .about-layout {
    display: grid;

    grid-template-columns: 1fr;

    gap: 42px;
  }


  .about-image-wrapper {
    width: 100%;

    min-height: 0;

    margin: auto;
  }


  .about-image {
    width: 100%;

    max-width: 380px;
    height: 320px;

    margin: auto;

    object-fit: cover;

    border-radius:
      27px 14px
      27px 14px;
  }


  .about-image-caption {
    width: 100%;

    margin-top: 8px;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-align: center;
  }


  .about-content {
    width: 100%;

    margin: auto;

    text-align: center;
  }


  .about-content h2 {
    margin:
      0 0
      20px;

    font-size:
      clamp(29px, 9vw, 39px);

    line-height: 1.08;

    text-align: center;
  }


  .about-card {
    padding:
      26px 20px;

    border-radius: 26px;

    text-align: left;
  }


  .about-card p {
    font-size: 14px;

    line-height: 1.7;
  }


  .about-cta {
    width: 100%;
    max-width: 250px;

    height: 51px;

    margin:
      22px auto 0;

    font-size: 12px;
  }


  /* ==========================================================
     SERVICIOS
  ========================================================== */

  .services-premium {
    padding:
      80px 16px
      85px;
  }


  .services-heading {
    margin-bottom: 34px;
  }


  .services-heading h2 {
    font-size:
      clamp(29px, 9vw, 39px);
  }


  .services-heading p {
    font-size: 13px;

    line-height: 1.65;
  }


  .services-grid-premium {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  .service-premium-card {
    min-height: auto;

    padding: 25px;

    border-radius: 25px;
  }


  .service-premium-icon {
    width: 50px;
    height: 50px;

    font-size: 21px;

    border-radius: 16px;
  }


  .service-premium-card h3 {
    font-size: 20px;
  }


  .service-premium-card p {
    font-size: 13px;

    line-height: 1.65;
  }


  .services-call-area {
    justify-content: center;

    margin-top: 30px;
  }


  .services-call-button {
    width: 100%;
    max-width: 255px;

    height: 51px;
  }


  /* ==========================================================
     GALERÍA
  ========================================================== */

  .gallery-premium {
    padding:
      80px 14px
      85px;
  }


  .gallery-heading {
    margin-bottom: 32px;
  }


  .gallery-heading h2 {
    font-size:
      clamp(29px, 9vw, 39px);
  }


  .gallery-heading p {
    font-size: 13px;
  }


  .gallery-grid-premium {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  .gallery-item {
    width: 100%;

    aspect-ratio: 4 / 3;

    border-radius: 19px;
  }


  /* ==========================================================
     CTA
  ========================================================== */

  .cta-section {
    padding:
      55px 15px;
  }


  .cta-pillow {
    padding:
      32px 20px;

    border-radius: 27px;

    flex-direction: column;

    text-align: center;
  }


  .cta-pillow h2 {
    font-size:
      clamp(29px, 9vw, 39px);
  }


  .cta-buttons {
    width: 100%;

    justify-content: center;
  }


  /* ==========================================================
     CONTACTO
  ========================================================== */

  .contact-premium {
    padding:
      80px 16px
      85px;
  }


  .contact-heading {
    margin-bottom: 35px;
  }


  .contact-heading h2 {
    font-size:
      clamp(29px, 9vw, 39px);
  }


  .contact-heading p {
    font-size: 13px;
  }


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

    gap: 20px;
  }


  .contact-information-card {
    padding:
      26px 20px;

    border-radius: 27px;
  }


  .contact-information-card h3 {
    font-size:
      clamp(25px, 7vw, 33px);
  }


  .contact-information-card > p {
    font-size: 13px;
  }


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

    gap: 10px;
  }


  .contact-button {
    width: 100%;

    height: 51px;
  }


  .contact-map-card {
    padding: 12px;

    border-radius: 27px;
  }


  .map-frame {
    height: 290px;

    border-radius: 20px;
  }


  /* ==========================================================
     COBERTURA
  ========================================================== */

  #cobertura {
    scroll-margin-top: 115px;
  }


  .coverage-premium {
    padding:
      80px 16px
      85px;
  }


  .coverage-heading {
    width: 100%;

    max-width: 100%;

    margin:
      0 auto
      30px;

    padding-top: 18px;
  }


  .coverage-heading h2 {
    font-size:
      clamp(29px, 9vw, 39px);

    text-align: center;
  }


  .coverage-heading p {
    font-size: 13px;

    line-height: 1.65;
  }


  .coverage-text {
    columns: 1;

    width: 100%;
  }


  .coverage-text h3 {
    font-size: 17px;
  }


  .coverage-text p {
    font-size: 13px;

    line-height: 1.7;
  }


  .coverage-links {
    flex-wrap: wrap;

    text-align: center;
  }


  .seo-hashtags p {
    font-size: 9px;

    line-height: 1.7;
  }


  /* ==========================================================
     FOOTER
  ========================================================== */

  .footer,
  .footer-premium,
  .footer-adge {
    padding-left: 16px;
    padding-right: 16px;

    text-align: center;
  }


  .footer-inner,
  .footer-bottom {
    flex-direction: column;

    justify-content: center;

    text-align: center;

    gap: 12px;
  }


  .footer-navigation {
    justify-content: center;

    gap: 12px;
  }


  .footer-adge-logo {
    width: 105px;
  }


  /* ==========================================================
     BOTONES FLOTANTES
  ========================================================== */

  .floating-contact {
    right: 12px;
    bottom: 18px;

    gap: 9px;
  }


  .floating-contact a,
  .floating-btn {
    width: 47px;
    height: 47px;

    border-radius: 14px;
  }


  .floating-btn svg {
    width: 22px;
    height: 22px;
  }

}



/* ============================================================
   CELULARES PEQUEÑOS
============================================================ */

@media (max-width: 390px) {

  .nav-container {
    height: 88px;
    min-height: 88px;
  }


  .brand {
    height: 88px;
  }


  .brand img {
    width: 92px;
    height: 82px;

    margin-left: -9px;
  }


  .brand > div {
    width: 150px;
  }


  .brand-title {
    font-size: 13px;
  }


  .brand-slogan {
    font-size: 7px;
  }


  .menu-button {
    width: 38px;
    height: 38px;

    right: 9px;

    font-size: 21px;
  }


  .navigation {
    top: 88px;
  }


  .hero {
    height:
      calc(100svh - 88px);

    min-height:
      calc(100svh - 88px);

    margin-top: 88px;

    padding:
      25px 14px;
  }


  .hero h1 {
    font-size: 35px;
  }


  .hero-description {
    font-size: 12px;
  }


  .main-cta,
  .secondary-cta {
    max-width: 235px;

    height: 47px;
  }

}




/* =========================================
   AJUSTE DE ANCLAJES EN CELULAR
========================================= */

@media (max-width: 650px) {

  #inicio,
  #quienes-somos,
  #servicios,
  #galeria,
  #contacto,
  #cobertura {
    scroll-margin-top: 80px;
  }

}
