:root {
  --vino: #3d0715;
  --vino-2: #6e1327;
  --vino-3: #8a1932;
  --oro: #c99a45;
  --oro-claro: #f5dfad;
  --papel: #fff8eb;
  --marfil: #fffdf7;
  --tinta: #171015;
  --texto: #4f454c;
  --linea: rgba(61, 7, 21, 0.12);
  --sombra: 0 24px 65px rgba(34, 16, 20, 0.16);
  --radio-grande: 34px;
  --radio: 22px;
  --ancho: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--tinta);
  background:
    radial-gradient(circle at top left, rgba(201, 154, 69, 0.23), transparent 31rem),
    linear-gradient(180deg, var(--papel) 0%, #ffffff 45%, #fff5e2 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

.page-width {
  width: min(calc(100% - 34px), var(--ancho));
  margin: 0 auto;
}

.section-space {
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(61, 7, 21, 0.98), rgba(110, 19, 39, 0.92)),
    radial-gradient(circle at 78% 18%, rgba(201, 154, 69, 0.55), transparent 24rem);
}

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

.hero::before {
  width: 390px;
  height: 390px;
  right: -150px;
  top: 70px;
  background: rgba(245, 223, 173, 0.11);
}

.hero::after {
  width: 230px;
  height: 230px;
  left: -90px;
  bottom: 90px;
  background: rgba(245, 223, 173, 0.12);
}

.nav {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 34px), var(--ancho));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--oro), var(--oro-claro));
  color: var(--vino);
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.23);
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--oro);
  color: var(--vino);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
  padding: 44px 0 88px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--oro);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 630px;
  margin-top: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 2.3vw, 1.35rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(145deg, var(--oro), var(--oro-claro));
  color: var(--vino);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #fff;
}

.quick-data {
  width: min(100%, 610px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}

.quick-data div,
.info-row {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-data span,
.info-row span {
  display: block;
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.quick-data strong,
.info-row strong {
  font-size: 1.02rem;
}

.hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(90%, 440px);
  height: min(90%, 440px);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(201, 154, 69, 0.4), rgba(255, 255, 255, 0.07));
  filter: blur(2px);
}

.legal-card {
  position: relative;
  width: min(100%, 460px);
  min-height: 500px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radio-grande);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.legal-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(201, 154, 69, 0.22);
}

.legal-card-top,
.legal-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.77);
}

.legal-card-bottom p {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.scale-icon {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 280px;
  margin: auto;
}

.scale-post {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 18px;
  height: 165px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--oro-claro), var(--oro));
}

.scale-post::before,
.scale-post::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, var(--oro), var(--oro-claro));
}

.scale-post::before {
  top: -26px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
}

.scale-post::after {
  bottom: -18px;
  width: 150px;
  height: 24px;
  border-radius: 999px;
}

.scale-bar {
  position: absolute;
  left: 50%;
  top: 92px;
  width: 210px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--oro-claro);
}

.scale-line {
  position: absolute;
  top: 102px;
  width: 2px;
  height: 70px;
  background: rgba(245, 223, 173, 0.9);
}

.scale-line-left {
  left: 55px;
}

.scale-line-right {
  right: 55px;
}

.scale-plate {
  position: absolute;
  top: 165px;
  width: 92px;
  height: 18px;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(180deg, var(--oro-claro), var(--oro));
}

.scale-plate-left {
  left: 10px;
}

.scale-plate-right {
  right: 10px;
}

.intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.section-title h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.7vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--vino);
}

.section-title p:not(.label) {
  max-width: 720px;
  margin: 14px auto 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
}

.centered {
  text-align: center;
}

.centered .label {
  justify-content: center;
}

.intro-text {
  padding: 30px;
  border-left: 4px solid var(--oro);
  border-radius: 0 var(--radio) var(--radio) 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--sombra);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
  font-size: 1.08rem;
}

.areas {
  background:
    linear-gradient(180deg, rgba(61, 7, 21, 0.03), rgba(201, 154, 69, 0.12)),
    #fff;
}

.area-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: var(--marfil);
  box-shadow: 0 16px 44px rgba(34, 16, 20, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.area-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(201, 154, 69, 0.13);
}

.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 154, 69, 0.52);
  box-shadow: 0 22px 58px rgba(34, 16, 20, 0.13);
}

.area-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--vino), var(--vino-2));
  color: var(--oro-claro);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.area-card h3 {
  position: relative;
  z-index: 1;
  color: var(--vino);
  font-size: 1.75rem;
  line-height: 1;
}

.area-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
}

.coverage-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radio-grande);
  background:
    linear-gradient(135deg, rgba(61, 7, 21, 0.98), rgba(138, 25, 50, 0.92)),
    var(--vino);
  color: #fff;
  box-shadow: var(--sombra);
  overflow: hidden;
}

.coverage-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(201, 154, 69, 0.22);
}

.coverage-panel h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 5.5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.coverage-panel p {
  max-width: 640px;
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.05rem;
}

.coverage-mark {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 223, 173, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.coverage-mark span,
.coverage-mark strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.coverage-mark span {
  color: var(--oro-claro);
  font-size: 2rem;
  font-weight: 900;
}

.coverage-mark strong {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.contact {
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 154, 69, 0.16), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fff7e8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.info-panel {
  border-radius: var(--radio-grande);
  box-shadow: var(--sombra);
}

.contact-panel {
  padding: clamp(30px, 5vw, 58px);
  background: var(--vino);
  color: #fff;
}

.contact-panel h2 {
  max-width: 720px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-panel p {
  max-width: 620px;
  margin-top: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.76);
}

.info-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fff;
}

.info-row {
  border-color: var(--linea);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.9), rgba(255, 255, 255, 0.98));
}

.info-row span {
  color: var(--texto);
}

.info-row strong {
  display: block;
  color: var(--vino);
}

.areas-list strong {
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.footer {
  padding: 28px 17px 36px;
  text-align: center;
  background: #16050b;
  color: #fff;
}

.footer p {
  font-size: 1.05rem;
  font-weight: 800;
}

.footer span {
  display: block;
  margin-top: 4px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.fade-in {
  animation: fadeUp 0.8s ease both;
}

.fade-in:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .brand-name {
    white-space: normal;
    line-height: 1.1;
  }

  .nav-links {
    position: fixed;
    left: 17px;
    right: 17px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(61, 7, 21, 0.97);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    padding: 14px 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }

  .hero-art {
    min-height: auto;
  }

  .legal-card {
    min-height: 410px;
  }

  .intro,
  .contact-grid,
  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .coverage-mark {
    width: 150px;
    height: 150px;
  }

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

@media (max-width: 640px) {
  .section-space {
    padding: 66px 0;
  }

  .nav {
    padding: 16px 0;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .hero-grid {
    min-height: calc(100vh - 76px);
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
  }

  .quick-data,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions,
  .contact-buttons {
    width: 100%;
  }

  .button {
    padding-inline: 18px;
  }

  .legal-card {
    min-height: 360px;
    padding: 20px;
  }

  .scale-icon {
    width: 225px;
    height: 225px;
    transform: scale(0.9);
  }

  .intro-text,
  .area-card,
  .contact-panel,
  .info-panel,
  .coverage-panel {
    border-radius: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
