:root {
  --sky-50: #eef9ff;
  --sky-100: #dff4ff;
  --sky-500: #0ea5e9;
  --sky-700: #0369a1;
  --green-500: #e8a202;
  --green-700: #e8a202;
  --ink: #102033;
  --muted: #617085;
  --line: #d8e5ef;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --footer: #0d2638;
  --shadow: 0 18px 45px rgba(15, 35, 52, 0.12);
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: inherit;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select,
summary {
  font: inherit;
}

textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 229, 239, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.nav {
  width: min(1280px, calc(100% - 32px));
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  flex: 1 0 0;
}

.brand-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #26384c;
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sky-700);
  background: var(--sky-50);
  outline: none;
}

.nav-links .nav-cta {
  color: #ffffff;
  background: var(--green-700);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #ffffff;
  background: #c88900;
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 0 0;
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 800;
}

.language-switcher button {
  width: 34px;
  min-width: 34px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(3, 105, 161, 0.32);
  outline: none;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  transform: translateY(-1px);
}

.flag-icon {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 32, 51, 0.14);
}

.mobile-social,
.menu-backdrop {
  display: none;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 999px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-line-top {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-line-middle {
  transform: translate(-50%, -50%);
}

.menu-line-bottom {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle[aria-expanded="true"] .menu-line-top {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line-middle {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line-bottom {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  padding: calc(var(--header-height) + 64px) 0 96px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6500ms ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 28, 47, 0.88) 0%, rgba(7, 28, 47, 0.62) 46%, rgba(7, 28, 47, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 28, 47, 0.34), rgba(7, 28, 47, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffd86b;
}

#experiencia .eyebrow {
  font-size: 1.8rem;
  line-height: 1.15;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 4.05rem;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-lead {
  max-width: 900px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-support {
  max-width: 960px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-actions,
.final-cta-content .button {
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--green-700);
  box-shadow: 0 16px 32px rgba(232, 162, 2, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c88900;
}

.schedule-button,
.schedule-button:hover,
.schedule-button:focus-visible {
  color: #000000;
}

.schedule-button {
  gap: 8px;
}

.schedule-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links .schedule-button,
.nav-links .schedule-button:hover,
.nav-links .schedule-button:focus-visible {
  color: #000000;
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.button-secondary-on-light {
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid var(--line);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.hero-highlights span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #ffffff;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.split-copy h2,
.about-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.about-copy p,
.faq-intro p,
.final-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.official-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.safety-card,
.google-review-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
}

.feature-card h3,
.safety-card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.official-grid .feature-card {
  min-height: 150px;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, #ffffff 0%, var(--sky-50) 100%);
}

.official-grid .feature-card h3 {
  margin: 0;
  line-height: 1.32;
}

.feature-card p,
.safety-card p {
  margin: 0;
  color: var(--muted);
}

.site-security-note {
  max-width: 760px;
}

.site-security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.card-icon {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid #ccecff;
  border-radius: var(--radius);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-split {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.95), rgba(16, 96, 90, 0.9)),
    url("assets/images/foto-4.jpeg") center/cover;
}

.pedra-bonita-section {
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.92), rgba(16, 96, 90, 0.84)),
    url("assets/images/pedra-bonita.jpg") center/cover;
}

.split-layout,
.faq-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.split-layout > .section-heading {
  margin-bottom: 0;
}

.split-copy p,
.section-split .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.highlight-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(4, 20, 34, 0.18);
}

.image-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

@media (min-width: 1221px) {
  #rio-do-ceu .split-layout,
  #local .split-layout {
    align-items: stretch;
  }

  #rio-do-ceu .image-panel,
  #local .image-panel {
    min-height: 0;
    height: auto;
  }

  #rio-do-ceu .image-panel img,
  #local .image-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 47, 0.04), rgba(7, 28, 47, 0.46));
}

.highlight-panel span {
  position: relative;
  z-index: 1;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

.image-panel span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 0;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(4, 20, 34, 0.72);
}

.place-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.place-list li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.05);
}

.place-list li::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: var(--green-500);
  border-radius: 50%;
}

.split-text {
  display: flex;
  flex-direction: column;
}

.photo-story .section-heading {
  margin-bottom: 36px;
}

.photo-post {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.photo-post + .photo-post {
  margin-top: 40px;
}

.photo-post-reverse .photo-post-media {
  order: 2;
}

.photo-post-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-post-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
}

.photo-post-copy h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.photo-post-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

@media (max-width: 820px) {
  .photo-post {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-post-reverse .photo-post-media {
    order: 0;
  }

  .photo-post-media img {
    min-height: 240px;
  }
}

.section-note {
  margin: 32px 0 0;
  padding: 18px 20px;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid #ccecff;
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  font-weight: 800;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.timeline-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 12px;
  align-content: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
}

.timeline-card span {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--sky-700);
  border-radius: 50%;
  font-weight: 800;
}

.timeline-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
}

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

.certificates-panel {
  display: grid;
  gap: 28px;
  align-content: center;
  justify-self: center;
  width: min(100%, 620px);
  padding: 28px;
  background: rgba(7, 28, 47, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(4, 20, 34, 0.18);
}

.certificates-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1;
  text-align: center;
}

.institutional-logo {
  min-height: 136px;
  display: grid;
  margin: 0;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(4, 20, 34, 0.16);
}

.institutional-logo a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.institutional-logo a:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 4px;
}

.institutional-logo img {
  width: 100%;
  max-width: 96px;
  max-height: 70px;
  object-fit: contain;
}

.institutional-logo img.institutional-logo-wide {
  max-width: 146px;
  max-height: 76px;
}

.institutional-logo figcaption {
  color: var(--sky-700);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 26px;
  color: var(--ink);
  background: var(--sky-50);
  border: 1px solid #ccecff;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.45;
}

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

.safety-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.gallery-frame {
  position: relative;
}

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

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 13;
  border-radius: var(--radius);
  background: var(--sky-100);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: #ffffff;
  background: var(--green-700);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.gallery-arrow:disabled:hover {
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.94);
}

.gallery-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow-prev {
  left: -24px;
}

.gallery-arrow-next {
  right: -24px;
}

.gallery-status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.google-reviews {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 55%, var(--sky-50) 55%, var(--sky-50) 100%);
}

.reviews-heading {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}

.reviews-heading .section-heading {
  margin: 0 auto;
}

.google-review-featured {
  display: grid;
}

.google-review-featured.is-empty {
  display: block;
}

.google-reviews-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 960px) 56px;
  grid-template-areas: "prev card next";
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.google-review-featured {
  grid-area: card;
  width: min(100%, 960px);
  justify-self: center;
}

.google-review-card {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 300px;
  padding: 36px;
}

.google-review-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.google-review-profile {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.google-review-avatar {
  width: 54px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 800;
}

.google-review-person {
  display: grid;
  gap: 3px;
}

.google-review-person h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.google-review-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid #ccecff;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.google-badge span {
  width: 20px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.78rem;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0;
  line-height: 1;
}

.google-review-card p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
  white-space: pre-line;
  font-size: 1.08rem;
  line-height: 1.65;
}

.google-review-arrow {
  grid-area: prev;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--sky-700);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.14);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.google-review-arrow-next {
  grid-area: next;
}

.google-review-arrow:hover,
.google-review-arrow:focus-visible {
  color: #ffffff;
  background: var(--green-700);
  outline: none;
  transform: translateY(-1px);
}

.google-review-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.google-review-arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-review-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.google-map {
  margin: 24px auto 0;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #c9d4e2;
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.08);
}

.google-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.reviews-empty {
  max-width: 620px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
}

.faq-layout {
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--sky-700);
  background: var(--sky-50);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 28, 47, 0.86), rgba(7, 28, 47, 0.45)),
    url("assets/images/foto-1.jpeg") center/cover;
}

.final-cta-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.legal-page {
  color: #35465e;
  background: #ffffff;
}

.legal-page .container {
  width: min(100% - 32px, 1370px);
}

.legal-main {
  padding-top: var(--header-height);
}

.legal-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.legal-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #26384c;
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease;
}

.legal-nav-links a:hover,
.legal-nav-links a:focus-visible {
  color: var(--sky-700);
  background: var(--sky-50);
  outline: none;
}

.legal-nav-links .nav-cta {
  color: #ffffff;
  background: var(--green-700);
}

.legal-nav-links .nav-cta:hover,
.legal-nav-links .nav-cta:focus-visible {
  color: #ffffff;
  background: #c88900;
}

.legal-hero {
  padding: 42px 0 0;
  color: var(--ink);
  background: #ffffff;
}

.legal-hero h1 {
  max-width: none;
  margin: 0;
  padding-bottom: 20px;
  color: #000000;
  border-bottom: 1px solid #e7ad22;
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-updated {
  margin: 26px 0 0;
  color: #35465e;
  font-size: 1rem;
}

.legal-updated strong {
  font-weight: 800;
}

.legal-content {
  padding: 34px 0 72px;
  background: #ffffff;
}

.legal-document {
  max-width: 1370px;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.legal-document article {
  display: block;
  margin-bottom: 32px;
}

.legal-document h2 {
  margin: 0 0 2px;
  color: #000000;
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  color: #35465e;
  font-size: 1rem;
  line-height: 1.45;
}

.legal-document p,
.legal-document ul {
  margin: 0;
}

.legal-document ul {
  display: grid;
  gap: 6px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--sky-700);
  font-weight: 800;
}

.legal-document a:hover,
.legal-document a:focus-visible {
  color: var(--green-700);
  outline: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding: 56px 0 34px;
}

.footer-grid > div {
  display: grid;
  justify-items: start;
  align-content: start;
}

.footer-brand {
  justify-content: flex-start;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 150px;
  height: auto;
  max-width: 100%;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--green-700);
  color: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-list {
  display: grid;
  justify-items: start;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-location {
  white-space: nowrap;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer .footer-credit {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #ffd86b;
  outline: none;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  width: 68px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, #4bf06d 0%, #21c43a 100%);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(2, 12, 27, 0.34);
  transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #58f477 0%, #18b832 100%);
  outline: none;
}

.floating-whatsapp svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

@media (max-width: 1220px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    z-index: 140;
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 18px;
    right: 24px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 115;
    display: block;
    background: rgba(4, 9, 14, 0.74);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 120;
    width: min(360px, calc(100vw - 48px));
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    overflow-y: auto;
    padding: 92px 30px 32px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: -24px 0 52px rgba(16, 32, 51, 0.2);
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease, visibility 220ms ease;
    visibility: hidden;
  }

  .nav-links.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    color: var(--ink);
    font-size: 1.32rem;
    font-weight: 500;
    border-radius: 0;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--green-700);
    background: transparent;
  }

  .nav-links .nav-cta,
  .nav-links .nav-cta:hover,
  .nav-links .nav-cta:focus-visible {
    color: var(--ink);
    background: transparent;
  }

  .nav-controls {
    gap: 8px;
    margin-left: auto;
  }

  .language-switcher {
    justify-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .language-switcher button {
    width: 32px;
    min-width: 32px;
    height: 25px;
    padding: 0;
  }

  .mobile-social {
    display: grid;
    gap: 16px;
    margin-top: 10px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .mobile-social > span {
    color: #66758b;
    font-size: 0.96rem;
    font-weight: 600;
  }

  .mobile-social-links {
    display: flex;
    gap: 18px;
  }

  .mobile-social-links a {
    width: 32px;
    min-height: 32px;
    padding: 0;
    color: var(--ink);
  }

  .mobile-social-links svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

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

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

  .reviews-heading {
    display: grid;
    align-items: start;
  }

  .google-reviews-carousel {
    grid-template-columns: 48px minmax(0, 820px) 48px;
    gap: 14px;
  }

  .google-review-card {
    padding: 30px;
  }

  .split-layout,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .gallery-frame {
    padding-top: 62px;
  }

  .gallery-arrow {
    top: 0;
    bottom: auto;
    transform: none;
  }

  .gallery-arrow:hover,
  .gallery-arrow:focus-visible {
    transform: scale(1.04);
  }

  .gallery-arrow:disabled {
    transform: none;
  }

  .gallery-arrow-prev {
    left: calc(50% - 58px);
  }

  .gallery-arrow-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand-logo {
    width: auto;
    height: 58px;
  }

  .legal-page .nav {
    gap: 12px;
  }

  .legal-page .brand-logo {
    height: 52px;
  }

  .legal-nav-links {
    gap: 5px;
  }

  .legal-nav-links a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .legal-nav-links .nav-cta {
    display: none;
  }

  .language-switcher {
    gap: 6px;
  }

  .language-switcher button {
    width: 31px;
    min-width: 31px;
    height: 24px;
  }

  .flag-icon {
    width: 27px;
    height: 19px;
  }

  .hero {
    min-height: 88svh;
    padding: calc(var(--header-height) + 46px) 0 76px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 28, 47, 0.84), rgba(7, 28, 47, 0.68));
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 2rem;
    line-height: 1.14;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-support {
    font-size: 0.95rem;
  }

  .hero-actions,
  .hero-highlights {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .slider-dots {
    right: 16px;
    bottom: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .legal-hero {
    padding: 42px 0 0;
  }

  .legal-content {
    padding: 34px 0 56px;
  }

  .legal-document {
    padding: 0;
  }

  .legal-hero h1 {
    padding-bottom: 18px;
    font-size: 1.95rem;
  }

  .legal-updated {
    margin-top: 24px;
  }

  .legal-document article {
    margin-bottom: 30px;
  }

  .legal-document h2 {
    font-size: 1.38rem;
  }

  .legal-document p,
  .legal-document li {
    line-height: 1.5;
  }

  .feature-grid,
  .safety-panel,
  .place-list,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .certificates-panel {
    width: 100%;
    padding: 22px;
  }

  .certificates-panel h3 {
    font-size: 1.85rem;
  }

  .logo-placeholders {
    grid-template-columns: 1fr;
  }

  .institutional-logo {
    min-height: 150px;
  }

  .institutional-logo img {
    max-width: 120px;
    max-height: 86px;
  }

  .institutional-logo img.institutional-logo-wide {
    max-width: 190px;
    max-height: 96px;
  }

  .google-reviews-carousel {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "card card"
      "prev next";
    justify-content: stretch;
    gap: 16px 12px;
  }

  .google-review-featured {
    width: 100%;
  }

  .google-review-card {
    min-height: auto;
    padding: 24px 20px;
    gap: 16px;
  }

  .google-review-top {
    display: grid;
    gap: 14px;
  }

  .google-review-profile {
    align-items: start;
  }

  .google-review-avatar {
    width: 46px;
  }

  .google-review-arrow {
    justify-self: end;
  }

  .google-review-arrow-next {
    justify-self: start;
  }

  .google-review-actions .button {
    width: 100%;
  }

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

  .gallery-item {
    aspect-ratio: 9 / 12;
  }

  .final-cta {
    padding: 76px 0;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid > div,
  .footer-list {
    justify-items: center;
  }

  .footer-brand,
  .footer-social {
    justify-content: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 62px;
  }
}

@media (max-width: 420px) {
  .nav {
    width: min(100% - 24px, 1280px);
    gap: 10px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-controls {
    gap: 6px;
  }

  .language-switcher {
    gap: 5px;
    padding: 0;
  }

  .language-switcher button {
    width: 30px;
    min-width: 30px;
    height: 23px;
  }

  .flag-icon {
    width: 26px;
    height: 18px;
  }
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 104px 10px 20px;
  color: #ffffff;
  background: rgba(13, 38, 56, 0.97);
  border-top: 2px solid #e7ad22;
  box-shadow: 0 -6px 22px rgba(4, 20, 34, 0.24);
}

.cookie-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.35;
}

.cookie-banner a {
  color: #e8a202;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner a:hover,
.cookie-banner a:focus-visible {
  color: #ffd86b;
  outline: none;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-button {
  min-height: 34px;
  padding: 0 16px;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.cookie-button-primary {
  background: var(--green-700);
  border: 1px solid var(--green-700);
}

.cookie-button-primary:hover,
.cookie-button-primary:focus-visible {
  background: #c88900;
  border-color: #c88900;
}

.cookie-button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 4px 8px;
    padding: 4px 76px 4px 10px;
  }

  .cookie-banner p {
    flex: 1 1 100%;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .cookie-banner-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .cookie-button {
    min-height: 24px;
    padding: 0 10px;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
