:root {
  --brand: #0b1f3a;
  --accent: #60a5fa;
  --paper: #f7fafc;
  --mist: #e8f1fa;
  --text: #111827;
  --muted: #4b5563;
}

html {
  scroll-behavior: smooth;
}

body {
  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(96, 165, 250, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at right 20%,
      rgba(11, 31, 58, 0.08),
      transparent 26%
    ),
    var(--paper);
}

.site-shell {
  min-height: 100vh;
}

.surface-card {
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px -28px rgba(11, 31, 58, 0.28);
  backdrop-filter: blur(10px);
}

.hero-mesh {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(11, 31, 58, 0.88)),
    linear-gradient(160deg, rgba(96, 165, 250, 0.18), transparent 55%);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(232, 241, 250, 0.92);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.nav-link {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--brand);
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.35rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  background: var(--accent);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-switch a {
  border-radius: 9999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.language-switch a[aria-current="true"] {
  background: var(--brand);
  color: #fff;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-sale {
  background: rgba(96, 165, 250, 0.16);
  color: var(--brand);
}

.badge-soft {
  background: rgba(232, 241, 250, 0.96);
  color: var(--brand);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--brand);
}

.cta-link:hover,
.cta-link:focus-visible {
  color: #071427;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05)
    ),
    linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(11, 31, 58, 0.12));
}

.image-frame::after {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-pill {
  border-radius: 9999px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  padding: 0.7rem 1rem;
  transition: all 180ms ease;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  border-color: rgba(96, 165, 250, 0.55);
  background: var(--brand);
  color: #fff;
}

.price-stack {
  display: grid;
  gap: 0.2rem;
}

.price-stack strong {
  color: var(--brand);
  font-size: 1.15rem;
}

.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.84);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  gap: 1.1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.footer-brand-mark {
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem;
}

.footer-brand-copy {
  display: grid;
  gap: 0.2rem;
}

.footer-brand-role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-nav-row {
  display: grid;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-whatsapp {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.footer-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-whatsapp-copy {
  max-width: 24rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 9999px;
  background: #16a34a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 18px 32px -22px rgba(11, 31, 58, 0.7);
}

.footer-whatsapp-button:hover,
.footer-whatsapp-button:focus-visible {
  background: #15803d;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 24rem);
    grid-template-areas:
      "brand whatsapp"
      "menu whatsapp";
    align-items: start;
  }

  .footer-top {
    grid-area: brand;
  }

  .footer-nav-row {
    grid-area: menu;
  }

  .footer-whatsapp {
    grid-area: whatsapp;
    justify-items: end;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 9999px;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 22px 38px -24px rgba(11, 31, 58, 0.6);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-whatsapp-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.floating-whatsapp-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #15803d;
}

.mobile-panel {
  display: none;
}

.mobile-panel[data-open="true"] {
  display: block;
}

.form-note {
  border-radius: 1rem;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(232, 241, 250, 0.82);
  color: var(--brand);
  padding: 0.9rem 1rem;
}

.contact-form-feedback {
  margin-bottom: 1.5rem;
}

.contact-form-feedback[data-state="success"] {
  border-color: rgba(21, 128, 61, 0.24);
  background: rgba(220, 252, 231, 0.92);
  color: #166534;
}

.contact-form-feedback[data-state="error"] {
  border-color: rgba(185, 28, 28, 0.2);
  background: rgba(254, 242, 242, 0.96);
  color: #991b1b;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

@media (max-width: 767px) {
  .image-frame::after {
    font-size: 0.68rem;
  }
}
