:root {
  --black: #070604;
  --charcoal: #18130d;
  --brown: #3a2512;
  --gold: #c99a3c;
  --gold-light: #f4d99a;
  --cream: #fff7e8;
  --ivory: #fffdf7;
  --white: #ffffff;
  --muted: #6f6254;
  --line: rgba(201, 154, 60, .28);
  --shadow: 0 26px 70px rgba(7, 6, 4, .20);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 217, 154, .38), transparent 34rem),
    linear-gradient(180deg, var(--ivory), var(--cream) 45%, #fff);
  line-height: 1.6;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 4, .92);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,154,60,.16);
  flex: 0 0 auto;
  background: var(--black);
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
}
.brand__name {
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a {
  color: rgba(255,255,255,.84);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .93rem;
  transition: .25s ease;
}
.nav__links a:hover,
.nav__links a:focus-visible { background: var(--gold-light); color: var(--black); }
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin: 6px 0;
  border-radius: 4px;
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--black);
  padding: 92px 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,6,4,.96) 0%, rgba(7,6,4,.78) 42%, rgba(7,6,4,.45) 100%),
    url("../assets/presentacion2.png") center / cover no-repeat;
  transform: scale(1.03);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(244,217,154,.24), transparent 26rem),
    linear-gradient(180deg, transparent 0%, rgba(7,6,4,.72) 100%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .78fr);
  align-items: center;
  gap: 48px;
}
.label,
.small-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 900;
  color: var(--gold-light);
}
.label::before,
.small-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.label--dark { color: var(--gold); }
.hero h1 {
  margin: 14px 0 18px;
  max-width: 800px;
  font-size: clamp(3.25rem, 10vw, 7.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.hero__text {
  margin: 0;
  max-width: 640px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: rgba(255,255,255,.88);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-3px); }
.button--gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 42px rgba(201,154,60,.30);
}
.button--outline {
  color: #fff;
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
}
.button--light {
  color: var(--black);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}
.button--dark {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}
.hero__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.logo-card { aspect-ratio: 4 / 5; padding: 14px; }
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.24);
}
.hero__cardbody { padding: 0 26px 28px; }
.hero__cardbody p { color: rgba(255,255,255,.76); margin: 8px 0 0; }
.phone {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
  margin-top: 8px;
}

.intro { padding: 50px 0 20px; }
.intro__box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(201,154,60,.20);
  box-shadow: 0 18px 60px rgba(7,6,4,.08);
}
.intro h2,
.section__heading h2,
.coverage h2,
.contact h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.05rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.intro p,
.section__heading p,
.coverage p,
.contact p { color: var(--muted); margin: 0; font-size: 1.08rem; }

.section { padding: 86px 0; }
.section__heading { max-width: 760px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(201,154,60,.22);
  box-shadow: 0 18px 54px rgba(7,6,4,.08);
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(244,217,154,.40);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.8rem;
  box-shadow: 0 14px 32px rgba(201,154,60,.25);
}
.card h3 { margin: 22px 0 10px; font-size: 1.45rem; }
.card p { margin: 0; color: var(--muted); }

.coverage {
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,6,4,.94), rgba(58,37,18,.88)),
    url("../assets/presentacion3.png") center / cover no-repeat;
}
.coverage__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.coverage h2 { color: #fff; }
.coverage p { color: rgba(255,255,255,.76); }

.gallery-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.72)); }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 18px;
}
.gallery__item {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
  box-shadow: 0 18px 54px rgba(7,6,4,.14);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .45s ease;
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.045); opacity: .88; }

.contact {
  padding: 90px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(244,217,154,.36), transparent 26rem),
    #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.contact__panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--ivory);
  border: 1px solid rgba(201,154,60,.24);
  box-shadow: 0 18px 60px rgba(7,6,4,.10);
}
.contact__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,154,60,.22);
  overflow-wrap: anywhere;
}
.contact__row span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .10em;
}
.contact__row a { font-weight: 800; text-decoration: none; }
.actions--contact { margin-top: 26px; }

.footer {
  padding: 34px 0;
  color: rgba(255,255,255,.82);
  background: var(--black);
  text-align: center;
}
.footer p { margin: 6px 0; }
.footer a { color: var(--gold-light); text-decoration: none; font-weight: 800; }

.floatwhatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 24px;
  display: none;
  place-items: center;
  background: rgba(7,6,4,.88);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.10);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero__grid,
  .intro__box,
  .contact__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 82px 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .coverage__box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav { width: min(100% - 22px, var(--max)); min-height: 72px; }
  .brand__logo { width: 48px; height: 48px; }
  .brand__name { max-width: 220px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(7,6,4,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  body.menu-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  .hero__text { font-size: 1.08rem; }
  .intro__box,
  .coverage__box,
  .contact__panel { padding: 24px; border-radius: 24px; }
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery__item--tall { grid-row: span 1; }
  .contact__row { grid-template-columns: 1fr; gap: 5px; }
  .button { width: 100%; }
}
@media (max-width: 420px) {
  .brand__name { max-width: 170px; }
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 3rem; }
  .gallery { grid-auto-rows: 230px; }
  .floatwhatsapp { width: 56px; height: 56px; }
}
