:root {
  --bg: #f3f8fd;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --primary: #2d678f;
  --primary-deep: #1e4664;
  --primary-soft: #d7e9f8;
  --text: #1f3342;
  --muted: #5f7688;
  --border: rgba(45, 103, 143, 0.14);
  --shadow: 0 24px 60px rgba(24, 66, 96, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 190, 232, 0.25), transparent 30%),
    radial-gradient(circle at top right, rgba(110, 164, 210, 0.18), transparent 28%),
    linear-gradient(180deg, #eef6fd 0%, #f8fbfe 45%, #eef5fb 100%);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 20px 24px;
}

.hero__content,
.section {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.language-switch {
  border: 1px solid rgba(45, 103, 143, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(24, 66, 96, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.language-switch:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
}

.hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
  pointer-events: none;
}

.hero__glow--left {
  top: -80px;
  left: -90px;
  background: rgba(142, 199, 238, 0.4);
}

.hero__glow--right {
  top: 30px;
  right: -80px;
  background: rgba(78, 132, 177, 0.18);
}

.brand-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(231, 242, 251, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(226, 238, 250, 0.9));
  border: 1px solid rgba(45, 103, 143, 0.12);
}

.brand-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.intro {
  max-width: 58ch;
  margin-top: 16px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #4c89b8);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(45, 103, 143, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(45, 103, 143, 0.28);
}

main {
  padding-bottom: 48px;
}

.section {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section__heading h2 {
  margin-bottom: 10px;
}

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

.info-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.photo-frame,
.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: review-scroll 30s linear infinite;
}

.review-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: min(360px, 80vw);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(24, 66, 96, 0.08);
}

.review-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
}

.review-card__content {
  min-width: 0;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card__top h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.review-card__stars {
  color: #f0b94a;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2edb6d, #18b556);
  color: #fff;
  box-shadow: 0 18px 34px rgba(24, 181, 86, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 40px rgba(24, 181, 86, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .topbar {
    justify-content: center;
  }

  .brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-card__logo {
    max-width: 180px;
    margin: 0 auto;
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

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

  .review-card {
    width: min(320px, 84vw);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 10px 10px;
  }

  .hero__content,
  .section {
    width: min(100% - 20px, 1100px);
  }

  .brand-card,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero__button {
    width: 100%;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
