:root {
  --navy-950: #031b36;
  --navy-900: #082f5d;
  --navy-800: #0b3b70;
  --gold-600: #b98527;
  --gold-500: #c99735;
  --gold-300: #e4c98f;
  --cream-100: #fbf7ef;
  --cream-50: #fffdf8;
  --ink: #172333;
  --muted: #526071;
  --line: rgba(8, 47, 93, .13);
  --white: #fff;
  --whatsapp: #128c4a;
  --shadow-sm: 0 12px 30px rgba(3, 27, 54, .08);
  --shadow-lg: 0 24px 64px rgba(3, 27, 54, .15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

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

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold-600);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-300); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.65rem, 5vw, 5.2rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(2.1rem, 4vw, 3.55rem); margin-bottom: 1rem; }
h3 { color: var(--navy-900); line-height: 1.25; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 47, 93, .08);
  background: rgba(255, 253, 248, .93);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 245px;
}
.brand img { width: 53px; height: auto; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}
.brand-copy small { color: var(--gold-600); font-size: .76rem; font-weight: 750; letter-spacing: .03em; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 720;
}
.main-nav a:hover { color: var(--gold-600); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.header-phone svg { width: 19px; fill: var(--gold-600); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
  background:
    radial-gradient(circle at 12% 25%, rgba(201, 151, 53, .11), transparent 28%),
    linear-gradient(135deg, var(--cream-100), var(--cream-50));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -110px -170px auto;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(201,151,53,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(201,151,53,.04), 0 0 0 100px rgba(201,151,53,.025);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 690px; }
.hero-lead {
  max-width: 650px;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 0 0 1.65rem;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 23px; height: 23px; fill: currentColor; }
.button-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(18, 140, 74, .22);
}
.button-whatsapp:hover { background: #0e7b40; }
.button-secondary {
  border: 1px solid rgba(8,47,93,.2);
  background: rgba(255,255,255,.6);
  color: var(--navy-900);
}
.button-secondary:hover { box-shadow: var(--shadow-sm); background: var(--white); }
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy-800);
  font-size: .88rem;
  font-weight: 700;
}
.hero-benefits li { position: relative; padding-left: 20px; }
.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 950;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  grid-template-rows: 1.18fr .82fr;
  gap: 12px;
}
.photo {
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: #ddd;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { grid-column: 1 / 3; min-height: 332px; }
.photo-main img { object-position: center 42%; }
.photo-office, .photo-home { min-height: 214px; }
.photo-office img { object-position: center; }
.photo-home img { object-position: center; }
.visual-badge {
  position: absolute;
  left: -31px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  padding: 14px 18px;
  border: 1px solid rgba(201,151,53,.32);
  border-radius: 18px;
  background: rgba(255,253,248,.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.visual-badge svg { width: 36px; fill: var(--gold-600); }
.visual-badge span { display: grid; line-height: 1.25; }
.visual-badge strong { color: var(--navy-900); font-size: .94rem; }
.visual-badge small { color: var(--muted); font-size: .78rem; }

.section-heading { max-width: 740px; margin: 0 auto 46px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }
.specialties { background: var(--white); }
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.specialty-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 29px 27px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fffdf9);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,151,53,.45);
  box-shadow: 0 20px 45px rgba(3,27,54,.12);
}
.icon-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid rgba(201,151,53,.45);
}
.icon-wrap svg { width: 39px; fill: var(--navy-900); }
.specialty-card h3 { margin-bottom: .65rem; font-size: 1.28rem; }
.specialty-card p { color: var(--muted); font-size: .96rem; }
.specialty-card a {
  margin-top: auto;
  color: var(--navy-900);
  font-weight: 850;
  text-decoration: none;
}
.specialty-card a:hover { color: var(--gold-600); }

.service {
  background:
    linear-gradient(120deg, rgba(8,47,93,.98), rgba(3,27,54,.98)),
    var(--navy-900);
  color: rgba(255,255,255,.82);
}
.service h2 { color: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.service-points { display: grid; gap: 16px; }
.service-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.service-points > article > span {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.service-points h3 { color: var(--white); margin-bottom: .3rem; font-size: 1.08rem; }
.service-points p { margin-bottom: 0; font-size: .94rem; }

.contact { background: var(--cream-100); }
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 8% 0, rgba(201,151,53,.2), transparent 36%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.contact-card h2 { color: var(--white); }
.contact-copy p:last-child { margin-bottom: 0; }
.contact-actions { display: grid; gap: 12px; }
.contact-item {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 19px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.055);
  transition: background .18s ease, transform .18s ease;
}
.contact-item:hover { background: rgba(255,255,255,.11); transform: translateX(3px); }
.contact-highlight { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); border-color: transparent; }
.contact-highlight:hover { background: linear-gradient(135deg, #a8751f, #c99735); }
.contact-item svg { flex: 0 0 auto; width: 34px; fill: currentColor; }
.contact-item span { display: grid; line-height: 1.25; min-width: 0; }
.contact-item small { color: rgba(255,255,255,.72); font-weight: 750; }
.contact-item strong { font-size: clamp(1rem, 2vw, 1.28rem); overflow-wrap: anywhere; }

.site-footer { padding: 38px 0 100px; background: var(--cream-50); border-top: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  color: var(--muted);
  font-size: .85rem;
}
.footer-inner p { margin: 0; }
.footer-tagline { text-align: right; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; width: fit-content; }
.footer-brand img { width: 40px; }
.footer-brand span { display: grid; line-height: 1.15; }
.footer-brand strong { color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; }
.footer-brand small { color: var(--gold-600); font-size: .72rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18,140,74,.35);
  text-decoration: none;
  font-weight: 850;
}
.floating-whatsapp svg { width: 26px; fill: currentColor; }

:focus-visible {
  outline: 3px solid #e4b454;
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .header-phone { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(100%, 760px); min-height: 620px; margin-inline: auto; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .contact-card { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header { position: relative; }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 44px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy small { font-size: .66rem; }
  .header-phone { width: 46px; height: 46px; padding: 0; justify-content: center; }
  .header-phone span { display: none; }
  .header-phone svg { width: 21px; }
  .hero { padding: 56px 0 72px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 9vw, 3rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 60px; }
  .hero-benefits { display: grid; gap: 8px; }
  .hero-visual {
    min-height: 560px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr .8fr;
  }
  .photo-main { min-height: 330px; }
  .photo-office, .photo-home { min-height: 190px; }
  .visual-badge { left: 12px; bottom: 16px; min-width: 0; max-width: calc(100% - 24px); }
  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 0; }
  .service-grid { gap: 32px; }
  .service-points article { grid-template-columns: 46px 1fr; padding: 18px; }
  .contact-card { width: min(calc(100% - 28px), var(--container)); padding: 32px 20px; border-radius: 24px; }
  .contact-item { min-height: 76px; padding: 13px 15px; }
  .contact-item svg { width: 30px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-tagline { text-align: center; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 14px; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

@media (max-width: 470px) {
  .hero-visual { min-height: 470px; gap: 8px; }
  .photo { border-width: 3px; border-radius: 17px; }
  .photo-main { min-height: 275px; }
  .photo-office, .photo-home { min-height: 150px; }
  .visual-badge { padding: 10px 12px; }
  .visual-badge svg { width: 30px; }
  .visual-badge strong { font-size: .83rem; }
  .visual-badge small { font-size: .69rem; }
}

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