:root {
  --bg-body: #f5f8ff;
  --text-dark: #081a35;
  --text-light: #526176;
  --primary-dark: #002b5c;
  --primary-mid: #004b93;
  --accent-gold: #ffd200;
  --metal: #eef5ff;
  --metal-dark: #cad9f1;
  --white: #ffffff;
  --shadow-card: 0 14px 42px rgba(0, 43, 92, 0.12);
  --transition: all 0.3s ease;
  --whatsapp: #25d366;
  --call: #004b93;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 210, 0, 0.16), transparent 23rem),
    radial-gradient(circle at 86% 28%, rgba(0, 75, 147, 0.14), transparent 24rem),
    linear-gradient(180deg, #eef4ff 0%, #ffffff 42%, #f5f8ff 100%);
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-icon svg,
.round-call svg,
.quick-contact svg,
.mobile-top-action svg,
.bottom-nav svg {
  width: 22px;
  height: 22px;
}

.desktop-nav {
  position: sticky;
  top: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 10%;
  border-bottom: 4px solid var(--accent-gold);
  background:
    linear-gradient(90deg, #001d3f, #002b5c 58%, #004b93);
  box-shadow: 0 9px 28px rgba(0, 43, 92, 0.24);
}

.mobile-lang,
.mobile-top-action {
  display: none;
}

.logo {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: #ffffff;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 210, 0, 0.24);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-dark);
  border-color: rgba(255, 210, 0, 0.9);
  background: linear-gradient(180deg, #ffe25a, #ffd200);
  transform: translateY(-2px);
}

.nav-links .nav-phone {
  min-width: 150px;
  color: var(--primary-dark);
  border-color: rgba(255, 210, 0, 0.42);
  background: linear-gradient(180deg, #ffe25a, #ffd200);
  box-shadow: 0 10px 22px rgba(255, 210, 0, 0.22);
}

header {
  position: relative;
  overflow: hidden;
  padding: 88px 20px 98px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(118deg, transparent 0 36%, rgba(255, 210, 0, 0.18) 36% 39%, transparent 39% 100%),
    linear-gradient(152deg, transparent 0 66%, rgba(255, 210, 0, 0.12) 66% 68%, transparent 68% 100%),
    radial-gradient(ellipse at 82% 22%, rgba(255, 210, 0, 0.34), transparent 18rem),
    radial-gradient(ellipse at 10% 82%, rgba(255, 210, 0, 0.14), transparent 22rem),
    radial-gradient(ellipse at 46% 10%, rgba(255, 255, 255, 0.11), transparent 28rem),
    linear-gradient(135deg, #001d3f 0%, #002b5c 48%, #004b93 100%);
  background-size: auto;
}

header::before,
header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

header::before {
  top: 8%;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.18), transparent 62%);
  animation: heroGlowMove 9s ease-in-out infinite alternate;
}

header::after {
  right: -7rem;
  bottom: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.2), transparent 64%);
  animation: heroGlowMoveReverse 11s ease-in-out infinite alternate;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.1), rgba(255, 255, 255, 0) 42%);
  box-shadow: none;
  backdrop-filter: none;
  animation: heroCardIn 0.9s ease both;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -26px;
  left: -28px;
  bottom: -26px;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd200, #004b93);
  box-shadow: 0 0 0 10px rgba(0, 75, 147, 0.1);
  transform: none;
  animation: badgePulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-text {
  text-align: left;
  animation: heroTextIn 0.9s ease 0.15s both;
}

.pretitle {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

header h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.45rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  color: #ffffff;
}

header h1 span {
  color: var(--accent-gold);
  text-shadow: 0 12px 30px rgba(255, 210, 0, 0.18);
}

header p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
  font-weight: 400;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 28px;
}

.hero-metrics span {
  min-height: 82px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 210, 0, 0.26);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 43, 92, 0.08);
}

.hero-metrics strong {
  display: block;
  color: var(--accent-gold);
  font-size: 1.45rem;
  line-height: 1;
}

.header-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  transition: var(--transition);
}

.btn-reserve {
  gap: 12px;
  min-width: 300px;
  min-height: 56px;
  color: var(--primary-dark);
  border: 2px solid rgba(255, 210, 0, 0.55);
  background: linear-gradient(180deg, #ffe25a, #ffd200);
  box-shadow: 0 18px 38px rgba(255, 210, 0, 0.24);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.96);
}

.btn-icon svg,
.quick-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.round-call {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, #004b93, #002b5c);
  box-shadow: 0 18px 38px rgba(0, 43, 92, 0.28);
  animation: callPulse 2.6s ease-in-out infinite;
}

.round-call svg {
  width: 28px;
  height: 28px;
  fill: none;
}

.menu-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 54px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 46px 18px 46px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(231, 239, 255, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(255, 210, 0, 0.24), transparent 12rem);
  overflow: hidden;
  box-shadow: 0 34px 75px rgba(0, 43, 92, 0.16);
  animation: heroProductIn 0.9s ease 0.25s both;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 210, 0, 0.16), transparent 34%);
  animation: productLightSweep 8s linear infinite;
  opacity: 0.38;
}

.hero-image span {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd200, #f3c400);
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: min(520px, 96%);
  height: 390px;
  object-fit: cover;
  border-radius: 32px 12px 32px 12px;
  filter: drop-shadow(0 24px 30px rgba(0, 43, 92, 0.24));
  animation: cylinderFloat 3.8s ease-in-out infinite;
}

.hero-image span {
  animation: badgePulse 2.8s ease-in-out infinite;
}

.hero-order-card,
.hero-route-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(0, 43, 92, 0.16);
  backdrop-filter: blur(12px);
}

.hero-order-card {
  right: 20px;
  bottom: 32px;
}

.hero-route-card {
  left: 20px;
  bottom: 92px;
}

.hero-order-card strong,
.hero-route-card strong {
  color: var(--primary-dark);
  font-size: 0.98rem;
}

.hero-order-card small,
.hero-route-card small {
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.section-title {
  margin-bottom: 56px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
}

.section-title p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-light);
}

.section-title .bar {
  width: 80px;
  height: 5px;
  margin: 15px auto;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary-mid), var(--accent-gold));
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 75, 147, 0.28);
}

.card h3 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--text-light);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(145deg, var(--primary-mid), var(--primary-dark));
}

.products-section,
.reviews-wrap,
.articles-section {
  margin-top: 90px;
}

.product-card,
.article-card {
  padding: 0;
}

.product-card img,
.article-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  padding: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 9rem),
    linear-gradient(180deg, #ffffff, var(--metal));
}

.article-content {
  padding: 30px;
}

.article-content a,
.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-mid);
  font-weight: 900;
}

.review-card {
  border-left: 5px solid var(--primary-mid);
  background: var(--white);
}

.quote-icon {
  position: absolute;
  top: 14px;
  right: 30px;
  color: #dce7f7;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-meta {
  display: flex;
  flex-direction: column;
}

.client-name {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #27ae60;
  font-size: 0.82rem;
  font-weight: 700;
}

.neighborhoods-section {
  margin-top: 90px;
  padding: 50px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.neighborhoods-section h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
}

.neighborhoods-section p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-light);
  text-align: center;
}

.neighborhood-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.neighborhood-item {
  padding: 8px 18px;
  border: 1px solid #d3def0;
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fff, #f0f6ff);
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 940px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid #d3def0;
}

.seo-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

footer {
  padding: 78px 20px 120px;
  border-top: 5px solid #ffd200;
  color: var(--white);
  background: linear-gradient(135deg, #002b5c, #004b93);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-align: center;
}

.legal-note {
  max-width: 760px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-btns {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px 10px 10px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-right: 0;
  border-radius: 22px 0 0 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(0, 43, 92, 0.16);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.quick-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 196px;
  min-height: 62px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 18px 0 0 18px;
  color: var(--text-dark);
  font-weight: 900;
  box-shadow: none;
  transition: var(--transition);
}

.quick-contact:hover {
  transform: translateX(-8px);
  box-shadow: 0 14px 24px rgba(0, 43, 92, 0.18);
}

.quick-contact span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 12px;
  color: #fff;
  background: var(--primary-mid);
}

.quick-contact svg {
  width: 20px;
  height: 20px;
}

.quick-call span {
  color: var(--primary-dark);
}

.quick-whatsapp span {
  color: #13994d;
}

.quick-contact strong {
  display: grid;
  gap: 1px;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.quick-contact small {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
}

.quick-whatsapp {
  background: #ffffff;
}

.quick-call {
  background: linear-gradient(180deg, #f3f7ff, #ffffff);
}

.quick-call span {
  background: linear-gradient(180deg, #004b93, #002b5c);
}

.quick-whatsapp span {
  background: var(--whatsapp);
}

.bottom-nav {
  position: fixed;
  z-index: 1001;
  display: none;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  min-height: 78px;
  padding: 9px 10px 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 34px rgba(0, 43, 92, 0.18);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
  color: var(--text-light);
  border-radius: 16px;
  font-size: 10.5px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
  transition: var(--transition);
}

.bottom-nav a span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 31px;
  border: 1px solid rgba(0, 75, 147, 0.16);
  border-radius: 12px;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 900;
  background: #f0f6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.bottom-nav a span svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.05;
}

.bottom-nav a.active {
  color: var(--primary-dark);
}

.bottom-nav a.active span {
  color: #fff;
  border-color: rgba(255, 210, 0, 0.85);
  background: linear-gradient(180deg, #004b93, #002b5c);
}

.bottom-nav .bottom-brand {
  position: relative;
  min-height: 70px;
  margin-top: -32px;
  color: var(--primary-dark);
  background: transparent;
}

.bottom-nav .bottom-brand span {
  width: 80px;
  height: 80px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.25), transparent 36%),
    linear-gradient(145deg, #ffd200, #004b93);
  box-shadow:
    0 0 0 5px #f0f6ff,
    0 0 0 6px rgba(255, 210, 0, 0.32),
    0 16px 30px rgba(0, 43, 92, 0.26),
    0 0 30px rgba(255, 210, 0, 0.28);
}

.bottom-nav .bottom-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.02em;
}

.market-tabs {
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 74px;
  padding: 9px;
  border: 1px solid rgba(0, 75, 147, 0.18);
  border-radius: 22px;
}

.market-tabs a {
  border-radius: 18px;
}

.market-tabs a span {
  width: 38px;
  height: 34px;
  border-radius: 16px;
}

.market-tabs .bottom-brand {
  margin-top: -26px;
}

.market-tabs .bottom-brand span {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  transform: rotate(-6deg);
}

.market-tabs .bottom-brand strong {
  display: inline-block;
  transform: rotate(6deg);
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroProductIn {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cylinderFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-13px) rotate(1deg);
  }
}

@keyframes heroSheen {
  0%,
  48% {
    transform: translateX(-125%);
  }
  72%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes productLightSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 38px rgba(255, 210, 0, 0.24);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(255, 210, 0, 0.36);
  }
}

@keyframes callPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 38px rgba(0, 43, 92, 0.28);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 24px 50px rgba(0, 43, 92, 0.38);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroGlowMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(70px, 44px, 0) scale(1.08);
  }
}

@keyframes heroGlowMoveReverse {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-62px, -46px, 0) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .header-btns {
    justify-content: center;
  }

  .hero-metrics {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .desktop-nav {
    justify-content: center;
    min-height: 82px;
    padding: 12px 5%;
    border-bottom-color: rgba(0, 75, 147, 0.28);
    background: rgba(255, 255, 255, 0.98);
  }

  .logo {
    position: absolute;
    top: 9px;
    left: 50%;
    min-width: 118px;
    padding: 10px 12px 12px;
    border: 1px solid rgba(0, 75, 147, 0.32);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    font-size: 1.05rem;
    line-height: 1.05;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 43, 92, 0.14);
    transform: translateX(-50%);
  }

  .logo span {
    display: block;
  }

  .mobile-lang,
  .mobile-top-action {
    position: absolute;
    top: 24px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 32px;
    border: 1px solid rgba(0, 75, 147, 0.32);
    border-radius: 9px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    background: #ffffff;
  }

  .mobile-lang {
    left: 30px;
  }

  .mobile-top-action {
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #004b93, #002b5c);
    box-shadow: 0 0 20px rgba(0, 43, 92, 0.22);
  }

  .mobile-top-action svg {
    width: 21px;
    height: 21px;
  }

  header {
    padding: 92px 14px 70px;
  }

  .hero-card {
    padding: 0;
    border-radius: 0;
  }

  .hero-card::before {
    top: -18px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    height: 6px;
  }

  header h1 {
    font-size: 2.25rem;
  }

  header p {
    font-size: 1.05rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-metrics span {
    min-height: 0;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .btn-reserve {
    width: calc(100% - 74px);
    min-width: 0;
    min-height: 56px;
  }

  .round-call {
    width: 62px;
    height: 62px;
  }

  .menu-discover {
    width: calc(100% - 74px);
    min-width: 0;
  }

  .hero-image {
    min-height: 410px;
    padding: 22px;
    border-radius: 32px 14px;
  }

  .hero-image img {
    width: 100%;
    height: 280px;
  }

  .hero-order-card,
  .hero-route-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin-top: 10px;
  }

  .container {
    padding: 62px 14px;
  }

  .card {
    padding: 32px;
  }

  .product-card,
  .article-card {
    padding: 0;
  }

  .neighborhoods-section {
    padding: 32px 18px;
  }

  .contact-btns {
    right: 14px;
    top: auto;
    bottom: 108px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .quick-contact {
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0 12px;
    border-radius: 50%;
    border-width: 2px;
  }

  .quick-contact strong {
    display: none;
  }

  .quick-contact span {
    width: auto;
    height: auto;
    color: #fff;
    background: transparent;
  }

  .quick-contact svg {
    width: 25px;
    height: 25px;
  }

  .quick-call {
    width: 62px;
    height: 62px;
    font-size: 13px;
    background: linear-gradient(180deg, #004b93, #002b5c);
    box-shadow: 0 14px 30px rgba(0, 43, 92, 0.26);
  }

  .quick-whatsapp {
    width: 40px;
    height: 40px;
    margin-right: 4px;
    font-size: 13px;
    background: var(--whatsapp);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
  }

  .quick-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  .bottom-nav {
    display: flex;
    justify-content: space-around;
  }
}
