:root {
  --white: #ffffff;
  --ink: #111827;
  --muted: #5f6977;
  --navy: #10233f;
  --navy-2: #17385f;
  --gold: #b98a3c;
  --gold-light: #f3e5c8;
  --soft: #f5f7fb;
  --line: #e6e9ef;
  --shadow: 0 22px 60px rgba(16, 35, 63, 0.13);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
}

.section-pad-sm {
  padding: 42px 0;
}

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

.nav {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: var(--white);
  display: grid;
  place-items: center;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.22);
}

.brand-text {
  font-size: 1.05rem;
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.15rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #f8f1e5 0, transparent 35%), linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-bg-shape {
  position: absolute;
  right: -160px;
  top: 40px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(185, 138, 60, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--navy-2);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-text,
.intro-box p,
.specialty-card p,
.location p,
.contact-card p,
.area-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.24);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

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

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185, 138, 60, 0.25);
  border-radius: 20px;
  pointer-events: none;
}

.card-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}

.hero-card li {
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}

.card-link {
  color: var(--gold);
  font-weight: 900;
}

.intro-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.intro-box h2,
.intro-box p {
  color: var(--white);
}

.specialty {
  background: var(--white);
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
}

.specialty-card,
.mini-card,
.area-card,
.map-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.main-specialty {
  padding: 42px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f2 100%);
  border-left: 8px solid var(--gold);
}

.section-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
}

.specialty-side {
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 26px;
}

.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mini-card a {
  color: var(--gold);
  font-weight: 900;
  word-break: break-word;
}

.areas {
  background: var(--soft);
}

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

.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.area-card {
  padding: 28px;
  min-height: 210px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.area-card span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 28px;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: center;
}

.map-card {
  overflow: hidden;
  padding: 10px;
}

.map-card iframe {
  border-radius: 20px;
}

.contact {
  background: linear-gradient(135deg, #f8f1e5 0%, #ffffff 70%);
}

.contact-card {
  text-align: center;
  padding: 52px 24px;
  max-width: 900px;
}

.contact-actions {
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.32);
  z-index: 45;
}

.footer {
  padding: 26px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .nav-links a {
    text-align: center;
  }

  .hero-grid,
  .specialty-grid,
  .intro-box,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .section-pad {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .main-specialty,
  .intro-box {
    padding: 26px;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    text-align: center;
    justify-content: center;
  }
}
