:root {
  --bg: #ffffff;
  --card: #f7f7f9;
  --text: #111111;
  --muted: #4b4b55;
  --red: #c81d25;
  --gold: #c81d25;
  --border: rgba(0, 0, 0, .10);
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 500px at 10% -10%, rgba(200, 29, 37, .12), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(200, 29, 37, .08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 9999
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.brand small {
  color: var(--muted);
  font-weight: 500
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px
}

.nav a:hover {
  background: rgba(0, 0, 0, .04);
  text-decoration: none
}

.nav-cta {
  border: 1px solid var(--border)
}

.header-ctas {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #8e1118);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 700
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.05)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(200, 29, 37, .35);
  color: var(--red);
  box-shadow: none
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px
}

.breadcrumb {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .75)
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  flex-wrap: wrap
}

.breadcrumb li+li::before {
  content: "›";
  color: var(--muted);
  display: inline-block;
  line-height: 1;
  padding: 0 6px;
  transform: translateY(-1px)
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--muted)
}

.breadcrumb li a {
  color: var(--muted)
}

.main {
  padding: 28px 0 60px
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .52));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.grid {
  display: grid;
  gap: 16px
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.hero {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr .7fr;
  align-items: stretch
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15
}

.hero p {
  color: var(--muted);
  margin: 10px 0 0
}

.hero-media {
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 300px at 30% 10%, rgba(200, 29, 37, .18), transparent 55%),
    radial-gradient(500px 300px at 80% 60%, rgba(200, 29, 37, .12), transparent 60%),
    url("../img/hero.svg") center/cover no-repeat;
  min-height: 240px;
  box-shadow: var(--shadow)
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .80);
  color: var(--muted)
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 34px 0 14px
}

.section-title h2 {
  margin: 0;
  font-size: 22px
}

.section-title p {
  margin: 0;
  color: var(--muted)
}

.service-card h3 {
  margin: 0 0 8px
}

.service-card p {
  margin: 0;
  color: var(--muted)
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 700
}

.gallery {
  column-count: 3;
  column-gap: 12px
}

.gallery figure {
  break-inside: avoid;
  margin: 0 0 12px
}

figure {
  margin: 0
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block
}

figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .65);
  padding: 28px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 10px
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.footer-bottom {
  padding-top: 16px;
  color: var(--muted)
}

.float-whatsapp,
.float-call {
  position: fixed;
  left: 16px;
  right: auto;
  z-index: 1100;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center
}

.float-whatsapp {
  bottom: 74px;
  background: #25D366;
  color: #fff
}

.float-call {
  bottom: 16px;
  background: linear-gradient(135deg, var(--red), #8e1118);
  color: #fff
}

.float-whatsapp svg,
.float-call svg {
  width: 20px;
  height: 20px;
  display: block
}

.appbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px)
}

.appbar-item {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .86);
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1
}

.appbar-item svg {
  width: 20px;
  height: 20px;
  display: block
}

.appbar-wa {
  background: rgba(37, 211, 102, .12);
  border-color: rgba(37, 211, 102, .30);
  color: #118a43
}

.appbar-call {
  background: rgba(200, 29, 37, .08);
  border-color: rgba(200, 29, 37, .20);
  color: var(--red)
}

.form {
  display: grid;
  gap: 12px
}

.field {
  display: grid;
  gap: 6px
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .92);
  color: var(--text)
}

textarea {
  min-height: 140px;
  resize: vertical
}

.alert {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(200, 29, 37, .08)
}

.alert.success {
  background: rgba(79, 202, 120, .12)
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .gallery {
    column-count: 2
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .header-ctas {
    display: none
  }

  .nav-toggle {
    display: inline-flex
  }

  .nav {
    display: none;
    position: absolute;
    right: 4%;
    left: 4%;
    top: 64px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch
  }

  .nav.is-open {
    display: flex
  }

  .main {
    padding-bottom: 110px
  }

  .float-whatsapp,
  .float-call {
    display: none
  }

  .appbar {
    display: flex
  }
}

@media (max-width: 480px) {
  .gallery {
    column-count: 1
  }
}