:root {
  --adcos-pink: #d50057;
  --adcos-pink-dark: #b70049;
  --adcos-gray: #929aa0;
  --adcos-ink: #35383b;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--adcos-ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.svg-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-shell {
  min-height: 100svh;
  background: radial-gradient(circle at 78% 26%, rgba(213, 0, 87, 0.055), transparent 24rem), linear-gradient(180deg, #fff 0%, #fff 75%, #fafafa 100%);
}
.top-strip {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px 24px;
  background: var(--adcos-gray);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
}
.top-strip p, .site-header p, .hero p { margin: 0; }
.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #ececee;
}
.logo-link { justify-self: start; }
.brand-logo { width: 112px; display: grid; justify-items: center; line-height: 1; }
.brand-mark { width: 30px; display: grid; grid-template-columns: repeat(3, 6px); gap: 5px; margin-bottom: 7px; }
.brand-mark i { display: block; width: 6px; height: 6px; border-radius: 999px; background: var(--adcos-pink); }
.brand-name { font-size: 28px; font-weight: 400; letter-spacing: 0.01em; }
.brand-subtitle { margin-top: 4px; font-size: 7px; letter-spacing: 0.17em; }
.header-region { font-size: 13px; letter-spacing: 0.18em; color: #747a80; }
.header-contact {
  justify-self: end;
  padding: 11px 0 9px;
  border-bottom: 2px solid var(--adcos-pink);
  color: var(--adcos-pink);
  font-size: 14px;
  transition: color 160ms ease, border-color 160ms ease;
}
.header-contact:hover, .header-contact:focus-visible { color: var(--adcos-pink-dark); border-color: var(--adcos-pink-dark); }
.hero {
  width: min(960px, calc(100% - 48px));
  min-height: calc(100svh - 162px);
  margin: 0 auto;
  padding: clamp(72px, 10vh, 120px) 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-accent { width: 48px; height: 4px; margin-bottom: 24px; background: var(--adcos-pink); }
.eyebrow { color: var(--adcos-pink); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; }
.hero h1 {
  margin: 18px 0 26px;
  color: var(--adcos-ink);
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.045em;
}
.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  color: #686e73;
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.locations span { display: inline-flex; align-items: center; }
.locations span:not(:last-child)::after { content: ""; width: 4px; height: 4px; margin: 0 16px; border-radius: 999px; background: var(--adcos-pink); }
.hero-copy { margin-top: 44px !important; font-size: clamp(22px, 3vw, 32px); font-weight: 300; letter-spacing: -0.02em; }
.whatsapp-button {
  min-height: 54px;
  margin-top: 26px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 2px;
  background: var(--adcos-pink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(213, 0, 87, 0.19);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.whatsapp-button svg { width: 23px; height: 23px; }
.whatsapp-button:hover, .whatsapp-button:focus-visible { transform: translateY(-2px); background: var(--adcos-pink-dark); box-shadow: 0 17px 34px rgba(183, 0, 73, 0.24); }
.support-copy { margin-top: 16px !important; color: #888d91; font-size: 12px; }
.contact-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--adcos-pink);
  color: #fff;
}
.contact-band p, .contact-band h2 { margin: 0; }
.contact-kicker { margin-bottom: 8px !important; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; opacity: 0.82; }
.contact-band h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 300; letter-spacing: -0.025em; }
.contact-link {
  min-width: max-content;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}
.contact-link svg { width: 22px; height: 22px; }
.contact-link:hover, .contact-link:focus-visible { background: #fff; color: var(--adcos-pink-dark); }
.site-footer { background: #8f979d; color: #fff; }
.footer-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 44px;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.footer-grid p { margin: 0; color: rgba(255,255,255,0.9); font-size: 13px; line-height: 1.8; }
.footer-grid a { font-size: 14px; line-height: 1.8; border-bottom: 1px solid rgba(255,255,255,0.55); }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand .brand-logo { color: #fff; }
.footer-brand .brand-mark i { background: #fff; }
.footer-brand > p { padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-label { margin-bottom: 7px !important; color: #fff !important; font-size: 10px !important; font-weight: 700; letter-spacing: 0.16em; }
.legal-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  border-top: 1px solid rgba(255,255,255,0.24);
  background: #848c92;
  text-align: center;
}
.legal-footer p { margin: 0; color: rgba(255,255,255,0.92); font-size: 10px; letter-spacing: 0.04em; line-height: 1.6; }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #20c968;
  color: #fff;
  box-shadow: 0 10px 26px rgba(19, 139, 70, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}
.floating-whatsapp svg { width: 33px; height: 33px; }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: scale(1.05); background: #18b65b; }
a:focus-visible { outline: 3px solid rgba(213, 0, 87, 0.28); outline-offset: 4px; }
@media (max-width: 720px) {
  .top-strip { min-height: 40px; font-size: 11px; }
  .site-header { width: min(100% - 32px, 1180px); min-height: 96px; grid-template-columns: 1fr auto; }
  .header-region { display: none; }
  .brand-logo { width: 98px; }
  .brand-mark { margin-bottom: 5px; }
  .brand-name { font-size: 25px; }
  .hero { width: min(100% - 34px, 960px); min-height: calc(100svh - 136px); padding: 72px 0 100px; }
  .hero h1 { margin-top: 16px; line-height: 0.98; }
  .locations { max-width: 340px; gap: 9px 0; font-size: 11px; line-height: 1.65; }
  .locations span:not(:last-child)::after { margin: 0 10px; }
  .hero-copy { margin-top: 36px !important; }
  .whatsapp-button { width: min(100%, 330px); }
  .contact-band { width: min(100% - 32px, 1180px); margin-bottom: 48px; padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .contact-link { width: 100%; justify-content: center; }
  .footer-grid { width: min(100% - 40px, 1180px); padding: 44px 0 36px; grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { justify-content: flex-start; }
  .legal-footer { padding-bottom: 90px; flex-direction: column; gap: 5px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
