:root {
  --blue: #0056b3;
  --teal: #18a9a1;
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --alt: #f6fbff;
  --card: #ffffff;
  --border: rgba(2, 10, 26, 0.10);
  --shadow: 0 14px 40px rgba(2, 10, 26, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 10px;
  z-index: 1000
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(246, 251, 255, .85);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0
}

.topbar__left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.topbar__item {
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, .72)
}

.topbar__sep {
  color: rgba(15, 23, 42, .45)
}

.topbar__right {
  display: flex;
  gap: 12px;
  align-items: center
}

.topbar__link {
  font-weight: 950;
  font-size: 12px;
  color: var(--blue)
}

.topbar__link:hover {
  text-decoration: underline
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: auto
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0
}

.brand__name {
  font-weight: 700;
  letter-spacing: -.2px;
  font-size: 20px;
  color: var(--blue)
}

.brand__tag {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: -2px
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto
}

.nav__link {
  font-weight: 600;
  font-size: 14px;
  color: rgba(15, 23, 42, .78)
}

.nav__link:hover {
  color: var(--text)
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px)
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 86, 179, .22)
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(0, 86, 179, .28)
}

.btn--ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text)
}

.btn--ghost:hover {
  border-color: rgba(2, 10, 26, .18)
}

.btn--lg {
  padding: 12px 16px;
  border-radius: 16px
}

.menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.menu__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 2px 0;
  border-radius: 2px
}

.mobile {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .92)
}

.mobile__inner {
  padding: 14px 0;
  display: grid;
  gap: 10px
}

.mobile__link {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700
}

.mobile__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.hero {
  padding: 34px 0 14px;
  background: radial-gradient(900px 260px at 15% 0%, rgba(24, 169, 161, .14), transparent 55%),
    radial-gradient(900px 300px at 80% 10%, rgba(0, 86, 179, .18), transparent 60%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(15, 23, 42, .8);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .8);
  padding: 8px 10px;
  border-radius: 999px
}

.hero__title {
  margin: 12px 0 10px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.8px
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px
}

.trust__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .8)
}

.trust__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(0, 86, 179, .10)
}

.trust__icon svg {
  width: 18px;
  height: 18px
}

.trust__title {
  font-weight: 800;
  font-size: 13px
}

.trust__desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.hero__media {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideShowAnim 15s infinite;
}

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

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideShowAnim {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero__card {
  margin-top: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .9);
  padding: 14px;
  box-shadow: 0 14px 40px rgba(2, 10, 26, .10);
}

.hero__cardRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 8px;
  border-radius: 14px
}

.hero__cardRow+.hero__cardRow {
  border-top: 1px solid var(--border)
}

.hero__cardIcon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(24, 169, 161, .10)
}

.hero__cardIcon svg {
  width: 18px;
  height: 18px
}

.hero__cardTitle {
  font-weight: 800;
  font-size: 13px
}

.hero__cardDesc {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px
}

.hero__cardLink {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--blue)
}

.section {
  padding: 54px 0
}

.section--alt {
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.section__head {
  margin-bottom: 18px
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.4px
}

.section__subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 500
}

.grid {
  display: grid;
  gap: 14px
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 30px rgba(0, 86, 179, .18)
}

.card__icon svg {
  width: 20px;
  height: 20px
}

.card__title {
  margin-top: 12px;
  font-weight: 900
}

.card__text {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px
}

.banner {
  margin-top: 16px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(0, 86, 179, .20);
  background: linear-gradient(135deg, rgba(0, 86, 179, .10), rgba(24, 169, 161, .08));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.banner__title {
  font-weight: 900
}

.banner__text {
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px
}

.banner__right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px
}

.profile__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 86, 179, .10), rgba(24, 169, 161, .08));
  position: relative;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-align: center
}

.profile__media img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.profile__media .missing {
  position: relative;
  z-index: 1
}

.profile__name {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -.2px
}

.profile__meta {
  margin-top: 4px;
  color: rgba(15, 23, 42, .72);
  font-weight: 700;
  font-size: 13px
}

.profile__text {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px
}

.review {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px
}

.star {
  display: inline-block
}

.review__source {
  font-size: 12px;
  color: rgba(15, 23, 42, .65);
  font-weight: 800
}

.review__text {
  margin: 0;
  color: var(--muted);
  font-weight: 500
}

.review__name {
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px
}

.reviews__cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px
}

.field__label {
  font-weight: 900;
  font-size: 13px
}

.field__input {
  width: 100%;
  border: 1px solid rgba(2, 10, 26, .14);
  border-radius: 16px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
  background: #fff;
}

.field__input:focus {
  border-color: rgba(0, 86, 179, .55);
  box-shadow: 0 0 0 4px rgba(0, 86, 179, .12)
}

.field__input--textarea {
  resize: vertical;
  min-height: 110px
}

.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px
}

.form__note {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  min-height: 18px
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px
}

.panel__title {
  font-weight: 950
}

.panel__text {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px
}

.map {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(2, 10, 26, .04)
}

.map iframe {
  width: 100%;
  height: 260px;
  border: 0
}

.panel__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.hours {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px
}

.hours__title {
  font-weight: 950;
  margin-bottom: 8px
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(15, 23, 42, .75);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start
}

.contact__items {
  margin-top: 16px;
  display: grid;
  gap: 12px
}

.contact__item {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff
}

.contact__label {
  font-weight: 950;
  font-size: 13px;
  color: rgba(15, 23, 42, .72)
}

.contact__value {
  margin-top: 6px;
  font-weight: 800
}

.link {
  color: var(--blue)
}

.contact__cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.contactCard {
  border-radius: var(--radius);
  border: 1px solid rgba(24, 169, 161, .28);
  background: linear-gradient(135deg, rgba(24, 169, 161, .10), rgba(0, 86, 179, .08));
  padding: 16px
}

.contactCard__title {
  font-weight: 950
}

.contactCard__text {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600
}

.contactCard__fine {
  margin-top: 10px;
  color: rgba(15, 23, 42, .7);
  font-weight: 800;
  font-size: 12px
}

.note {
  margin-top: 12px;
  border: 1px dashed rgba(2, 10, 26, .22);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, .65)
}

.note__title {
  font-weight: 950
}

.note__text {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600
}

.footer {
  padding: 34px 0 18px;
  background: #071327;
  color: rgba(255, 255, 255, .88)
}

.footer__inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap
}

.footer__name {
  font-weight: 950
}

.footer__meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, .65);
  font-weight: 700;
  font-size: 13px
}

.footer__cols {
  display: flex;
  gap: 26px;
  flex-wrap: wrap
}

.footer__title {
  font-weight: 950;
  margin-bottom: 10px
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  font-size: 13px;
  margin: 8px 0
}

.footer__link:hover {
  color: #fff
}

.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  font-size: 13px;
  margin: 10px 0
}

.footer__social svg {
  width: 16px;
  height: 16px
}

.footer__social:hover {
  color: #fff
}

.footer__bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  font-size: 12px
}

.footer__small {
  color: rgba(255, 255, 255, .55)
}

.whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #04210f;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 40px rgba(2, 10, 26, .22);
  font-weight: 950;
}

.whatsapp svg {
  width: 18px;
  height: 18px
}

.missing {
  display: none;
  padding: 14px;
  color: rgba(15, 23, 42, .78);
}

.is-missing img {
  display: none
}

.is-missing .missing {
  display: block
}

.missing__title {
  font-weight: 950
}

.missing__desc {
  margin-top: 6px;
  color: rgba(15, 23, 42, .65);
  font-weight: 800;
  font-size: 12px
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none
  }

  .menu {
    display: inline-flex
  }

  .brand {
    min-width: auto
  }

  .topbar__left {
    display: none
  }

  .hero__title {
    font-size: 36px
  }

  .grid--2 {
    grid-template-columns: 1fr
  }

  .grid--4 {
    grid-template-columns: 1fr
  }

  .form__row {
    grid-template-columns: 1fr
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .profile__media img {
    height: 220px
  }

  .whatsapp span {
    display: none
  }
}