:root {
  --bg: #05070e;
  --surface: #0b1020;
  --surface-alt: #111a30;
  --text: #eef2ff;
  --muted: #a9b6d3;
  --primary: #00b4d8;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #0a1430 0%, var(--bg) 45%);
  min-height: 100vh;
}

.background-glow {
  position: fixed;
  inset: -20% auto auto -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.28) 0%, rgba(0, 180, 216, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.hero,
main,
.site-footer {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 34px;
  gap: 16px;
  background: linear-gradient(180deg, #081633 0%, #061229 100%);
  border-bottom: 1px solid rgba(153, 214, 255, 0.24);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #eef2ff;
  text-decoration: none;
  font-weight: 600;
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.98rem;
  letter-spacing: 0.24em;
  margin-top: 2px;
}

.topbar-contact {
  text-align: center;
  color: #9eb2d9;
  letter-spacing: 0.09em;
}

.topbar-contact p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-whatsapp {
  background: #09bf33;
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 1.02rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.social-icon {
  color: #1e9890;
  text-decoration: none;
  font-size: 0;
  width: 34px;
  height: 34px;
  border: 2px solid #1e9890;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon::before {
  content: "◎";
  font-size: 1.1rem;
  line-height: 1;
}

.hero-content {
  padding: 24px 0 30px;
}

.hero-copy .badge {
  margin: 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.hero-highlights span {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  color: #c8f4ff;
  font-weight: 500;
}

.badge {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(0, 180, 216, 0.4);
  border-radius: 999px;
  color: #b8effb;
  background: rgba(0, 180, 216, 0.11);
  font-size: 0.9rem;
}

.hero h1 {
  margin: 18px 0 14px;
  max-width: 17ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #00171f;
  background: linear-gradient(135deg, var(--primary), #73e9ff);
}

.btn-outline,
.btn-ghost {
  color: #d6e3ff;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.info-grid {
  margin: 20px auto 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-headline {
  margin: 10px 0 16px;
}

.section-headline h2,
.reviews h2,
.cta-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.section-headline p,
.reviews p,
.cta-strip p {
  margin: 0;
  color: var(--muted);
}

.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.carousel-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.carousel-card img,
.photo-panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  padding: 14px;
  color: #e6f2ff;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 26px;
}

.photo-panel,
.reviews {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.photo-panel h3 {
  margin: 0 0 12px;
}

.photo-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.reviews {
  margin-bottom: 26px;
}

.reviews-highlight {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.reviews-carousel {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin-bottom: 16px;
}

.review-card {
  display: block;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reviews-carousel.is-enhanced .review-card {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.reviews-carousel.is-enhanced .review-card.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-card p {
  margin: 0 0 12px;
}

.review-author {
  display: block;
  margin-bottom: 10px;
  color: #dce8ff;
}

.review-card span {
  color: #b8effb;
  font-size: 0.92rem;
}


.info-grid article,
.contact-panel {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-grid p,
.contact-panel p,
.contact-list {
  color: var(--muted);
}

.contact-panel {
  margin-bottom: 26px;
}

.contact-panel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-panel-header h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.contact-panel-header p {
  margin: 0;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-list a {
  color: #b7f0ff;
}

.map-section {
  margin-bottom: 36px;
}

.map-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.map-section iframe {
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 28px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
  }

  .brand {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .topbar-contact {
    text-align: center;
  }

  .topbar-contact p {
    font-size: 0.88rem;
  }

  .topbar-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar .btn {
    width: 100%;
  }

  .hero-content {
    padding: 16px 0 24px;
  }

  .hero-copy .badge {
    margin: 0 auto;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .contact-panel-header {
    flex-direction: column;
    align-items: center;
  }

  .map-section iframe {
    min-height: 260px;
  }

  .carousel-card img,
  .photo-panel img {
    height: 190px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
  }
}

.contact-links-page {
  background: radial-gradient(circle at top, #0a1430 0%, var(--bg) 45%);
}

.quick-contact-wrap {
  width: min(760px, 92vw);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.quick-contact-card {
  width: 100%;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.quick-contact-card h1 {
  margin: 14px 0 8px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.quick-contact-subtitle {
  margin: 0;
  color: var(--muted);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.quick-contact-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface-alt);
}

.quick-contact-item h2 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.quick-contact-item p {
  margin: 0;
  color: var(--muted);
  min-height: 42px;
}

.quick-contact-item .btn {
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .quick-contact-card {
    padding: 18px;
    border-radius: 18px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}
