:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #eaf7ff;
  --text: #082f49;
  --muted: #4b6375;
  --brand: #075985;
  --brand-2: #0284c7;
  --brand-3: #14b8a6;
  --accent: #e0f2fe;
  --line: rgba(8, 47, 73, .12);
  --shadow: 0 24px 80px rgba(7, 89, 133, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .18), transparent 34rem),
    radial-gradient(circle at top right, rgba(2, 132, 199, .16), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus { left: 16px; }

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

.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 260px;
  height: 76px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  width: 260px;
  max-width: none;
  flex: 0 0 auto;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .95rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover { color: var(--brand); }

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, .85);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.menu-toggle__icon {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

.hero { padding-top: 72px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.03em; }

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 7vw, 5rem);
}

h2 { font-size: clamp(2rem, 4vw, 3.15rem); }

h3 { font-size: 1.45rem; }

.hero-text {
  margin: 24px 0 0;
  max-width: 660px;
  font-size: 1.17rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 16px 34px rgba(2, 132, 199, .26);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(2, 132, 199, .32);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .94rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--brand);
  border-color: var(--line);
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78)),
    linear-gradient(135deg, rgba(2,132,199,.12), rgba(20,184,166,.12));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .14);
}

.temperature-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--accent);
  font-size: 2rem;
  margin-bottom: 24px;
}

.hero-card p { color: var(--muted); }

.phone-link {
  display: block;
  margin: 24px 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 950;
  text-decoration: none;
  color: var(--brand);
  line-height: 1;
}

.hero-card small { color: var(--muted); }

.notice-bar {
  padding: 20px 0;
  background: var(--brand);
  color: #fff;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 10px;
}

.notice-grid span {
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 38px;
}

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

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(8, 47, 73, .1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgba(7, 89, 133, .08);
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.93), rgba(224,242,254,.78));
  border-color: rgba(2, 132, 199, .24);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

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

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

.text-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 950;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.section-soft { background: rgba(224, 242, 254, .55); }

.split-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.split-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.check-grid div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

.check-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.check-grid span { color: var(--muted); }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 89, 133, .98), rgba(2, 132, 199, .92)),
    var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel .eyebrow { color: #bfdbfe; }

.cta-panel p { color: rgba(255,255,255,.82); margin-bottom: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.maintenance-faq-title { margin-top: 64px; }

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--text);
}

details p { color: var(--muted); margin-bottom: 0; }

.location-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 34px;
  align-items: center;
}

address {
  margin-top: 22px;
  font-style: normal;
  color: var(--muted);
  padding: 18px;
  border-left: 4px solid var(--brand-3);
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.map-card {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 47, 73, .1);
  background: #fff;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.site-footer {
  padding: 54px 0 24px;
  background: #06263a;
  color: #e8f6ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 34px;
}

.site-footer h2 {
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-logo {
  width: 280px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-logo img {
  width: 280px;
  max-width: none;
  flex: 0 0 auto;
}

.site-footer p, .site-footer a { color: rgba(232, 246, 255, .8); }
.site-footer a { text-decoration: none; }

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(232, 246, 255, .66);
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
}

.copyright a {
  color: #fff;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #14b85a;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(20, 184, 90, .32);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 100;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 80px rgba(6, 38, 58, .28);
}

.cookie-banner__content {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner h2,
.cookie-modal h2 { font-size: 1.45rem; letter-spacing: -.02em; }
.cookie-banner p,
.cookie-modal__dialog > p,
.cookie-option span span { color: var(--muted); }
.cookie-banner p { margin: 8px 0 0; }

.cookie-actions { display: flex; flex-shrink: 0; gap: 10px; }
.cookie-button,
.cookie-preferences-button,
.cookie-modal__close { font: inherit; cursor: pointer; }

.cookie-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-weight: 850;
}

.cookie-button--primary { color: #fff; background: var(--brand); }
.cookie-button--secondary { color: var(--brand); background: #fff; }

.cookie-button:focus-visible,
.cookie-preferences-button:focus-visible,
.cookie-modal__close:focus-visible {
  outline: 3px solid rgba(2, 132, 199, .35);
  outline-offset: 3px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-modal[hidden],
.cookie-banner[hidden],
.cookie-preferences-button[hidden] { display: none; }

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 38, 58, .68);
  backdrop-filter: blur(5px);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 38px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 1.5rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.cookie-option strong,
.cookie-option span span { display: block; }
.cookie-option span span { margin-top: 3px; font-size: .9rem; }

.cookie-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.cookie-always-on {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 850;
}

.cookie-modal__actions { justify-content: flex-end; margin-top: 24px; }
.cookie-modal-open { overflow: hidden; }

.cookie-preferences-button {
  display: inline;
  padding: 0;
  border: 0;
  color: rgba(232, 246, 255, .8);
  background: transparent;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .header-grid { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: max(16px, calc((100% - var(--container)) / 2));
    width: min(420px, calc(100% - 32px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(8, 47, 73, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(7, 89, 133, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
  }
  .nav a:hover,
  .nav a:focus-visible {
    color: var(--brand);
    background: var(--surface-soft);
    outline: none;
  }
  .hero-grid, .split-grid, .location-grid { grid-template-columns: 1fr; }
  .cards-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section-pad { padding: 64px 0; }
  .hero { padding-top: 44px; }
  .header-grid { min-height: 74px; gap: 12px; }
  .brand { width: 185px; height: 68px; }
  .brand img { width: 185px; }
  .btn-small { display: none; }
  .menu-toggle { padding-inline: 12px; }
  .nav {
    left: 12px;
    right: 12px;
    width: auto;
    transform-origin: top center;
  }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .notice-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .faq-grid, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-panel { align-items: stretch; flex-direction: column; }
  .floating-whatsapp { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
  .site-footer { padding-bottom: 92px; }
  .copyright { align-items: flex-start; flex-direction: column; }
  .cookie-banner { inset: auto 8px 8px; padding: 18px; }
  .cookie-banner__content { align-items: stretch; flex-direction: column; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-modal__actions { grid-template-columns: 1fr; }
}
