:root {
  --black: #151515;
  --charcoal: #242424;
  --muted: #6f6a5f;
  --white: #ffffff;
  --soft: #fbfaf7;
  --cream: #f4efe3;
  --gold: #c89b2c;
  --gold-dark: #936b14;
  --line: rgba(24, 24, 24, 0.10);
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1240px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 210px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-gold {
  color: #17130a;
  background: linear-gradient(135deg, #f6d06d, var(--gold), #a87615);
  box-shadow: 0 16px 30px rgba(188, 139, 30, 0.28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: all 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 44, 0.18), transparent 36%),
    linear-gradient(135deg, #141414, #282219 52%, #0d0d0d);
  color: var(--white);
  padding: 92px 0 82px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.2;
  background: var(--gold);
}

.orb-one {
  right: -120px;
  top: -120px;
}

.orb-two {
  left: -160px;
  bottom: -170px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.74);
}

.hero-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.hero-card {
  background: rgba(255,255,255,0.94);
  padding: 18px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.logo-frame {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
}

.logo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.identity-section,
.about-section,
.services-section,
.contact-section {
  padding: 92px 0;
}

.identity-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.logo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.identity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.08);
}

.identity-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.identity-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
}

.about-section {
  background:
    linear-gradient(90deg, rgba(200,155,44,.08), transparent 38%),
    var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.value-card {
  min-height: 260px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.value-card .icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.value-card p,
.service-card p,
.service-card li {
  color: var(--muted);
}

.services-section {
  background: #151515;
  color: var(--white);
}

.services-section .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.68);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.11);
  transition: transform .25s ease, border .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,155,44,.55);
  background: linear-gradient(180deg, rgba(200,155,44,.12), rgba(255,255,255,.04));
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,.10);
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--gold) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 78%;
}

.service-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 8px;
}

.location-band {
  padding: 66px 0;
  background: linear-gradient(135deg, #f5efe2, #fffaf0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.location-content p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-info {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.contact-info div {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-info strong,
.contact-info a,
.contact-info span {
  display: block;
}

.contact-info strong {
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-info a {
  color: var(--gold-dark);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .86rem;
  font-weight: 900;
  color: var(--charcoal);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: var(--white);
  color: var(--black);
  padding: 14px 15px;
  font: 500 1rem Arial, Helvetica, sans-serif;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 44, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .86rem;
}

.footer {
  background: #111;
  color: rgba(255,255,255,.72);
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 36px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
}

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

.footer-bottom {
  margin-top: 44px;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.10);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #092414;
  font: 900 .9rem Arial, Helvetica, sans-serif;
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 74px;
  }

  .brand {
    width: 170px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 12px;
    background: var(--soft);
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    transform: none;
  }

  .identity-section,
  .about-section,
  .services-section,
  .contact-section {
    padding: 64px 0;
  }

  .services-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-form {
    padding: 22px;
  }
}

/* Ajustes solicitados: mayor visibilidad móvil del texto señalado y logotipo */
.hero-eyebrow {
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  letter-spacing: 0.13em;
  line-height: 1.25;
  color: #d8aa32;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
}

.identity-section .section-heading {
  margin-bottom: 30px;
}

.logo-showcase {
  align-items: center;
}

.identity-card {
  display: grid;
  place-items: center;
}

.identity-card span {
  display: none !important;
}

.identity-card img {
  width: min(100%, 980px);
  margin: 0 auto;
  object-fit: contain;
}

.identity-main {
  grid-column: 1 / -1;
  padding: 16px;
}

.identity-secondary {
  max-width: 760px;
  margin: 0 auto;
  grid-column: 1 / -1;
  padding: 16px;
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(255,255,255,.98);
  }

  .navbar {
    position: relative;
    min-height: 96px;
    justify-content: center;
    padding: 8px 54px 8px 54px;
  }

  .brand {
    width: min(76vw, 300px);
    margin: 0 auto;
  }

  .brand img {
    margin: 0 auto;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    top: 104px;
  }

  .hero {
    padding: 42px 0 60px;
  }

  .hero-eyebrow {
    font-size: 1.18rem;
    letter-spacing: 0.11em;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-card {
    padding: 12px;
    border-radius: 26px;
  }

  .logo-frame {
    border-radius: 20px;
  }

  .identity-section .section-heading {
    margin-bottom: 20px;
  }

  .identity-card {
    padding: 10px;
    border-radius: 22px;
  }

  .identity-card img {
    width: 100%;
  }
}
