:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --muted: #475569;
  --brand1: #0f62fe;
  --brand2: #194ef5;
  --brand3: #47c5f3;
  --hero-bg: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  background: linear-gradient(140deg, rgba(5, 17, 45, 0.94), rgba(14, 67, 189, 0.9), rgba(61, 197, 241, 0.82));
  color: #f8fbff;
  min-height: clamp(420px, 62vh, 650px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 17, 45, 0.92), rgba(12, 74, 188, 0.86) 55%, rgba(47, 197, 243, 0.74));
  z-index: 1;
}

.hero .container {
  padding-top: 80px;
  padding-bottom: 92px;
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.language-switcher {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-left: auto;
  color: rgba(248, 251, 255, 0.78);
}

.language-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.language-link:hover,
.language-link:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.language-divider {
  color: rgba(248, 251, 255, 0.54);
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 45px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 36px;
}

.hero-content {
  max-width: 760px;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.hero-copy .hero-content {
  justify-items: center;
}

.hero-eyebrow {
  align-self: flex-start;
}

.hero-content h1 {
  text-align: center;
}

.hero-announcement {
  text-align: center;
  align-items: center;
}

.hero-visual {
  margin: 0;
  position: relative;
  padding: 6px;
  background: rgba(8, 22, 52, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(89, 173, 255, 0.22);
  box-shadow: 0 24px 48px rgba(8, 22, 52, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  max-width: clamp(220px, 28vw, 320px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 18px;
  border: 1px solid rgba(107, 221, 255, 0.18);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 32, 66, 0.55);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.45), rgba(14, 165, 233, 0.55));
  color: #f8fbff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(12, 74, 188, 0.34);
  width: max-content;
  position: relative;
  overflow: visible;
  justify-self: center;
}

.hero-eyebrow::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(125, 211, 252, 0.6), rgba(56, 189, 248, 0.05) 70%);
  opacity: 0;
  transform: scale(0.92);
  filter: blur(0px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.hero-eyebrow:is(:hover, :focus-visible)::after {
  opacity: 1;
  transform: scale(1);
}

.hero-eyebrow::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(125, 211, 252, 0.45);
  opacity: 0.7;
  filter: blur(0);
  pointer-events: none;
  animation: heroBadgePulse 4s ease-in-out infinite;
}

@keyframes heroBadgePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.03);
  }
}
header h1 {
  font-size: clamp(2.6rem, 5.2vw + 1.4rem, 3.9rem);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 24px rgba(4, 12, 32, 0.55), 0 0 16px rgba(255, 255, 255, 0.35);
}

.hero-announcement {
  width: min(720px, 92vw);
  padding: 26px 32px;
  border-radius: 20px;
  background: rgba(8, 28, 56, 0.7);
  border: 1px solid rgba(151, 202, 255, 0.22);
  box-shadow: 0 28px 60px rgba(9, 21, 49, 0.38);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 18px;
}

.hero-announcement-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.72;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-announcement-text {
  margin: 0;
  line-height: 1.68;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-summary {
  margin: 0 auto;
  max-width: 58ch;
  color: rgba(233, 245, 255, 0.95);
  font-size: 1rem;
}

main {
  padding: 24px 0 40px;
}

section {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.feature-block {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
}

.feature-block p {
  text-align: justify;
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.media-gallery {
  display: grid;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.18);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 28px;
  gap: 24px;
}

.media-gallery-header {
  display: grid;
  gap: 10px;
  text-align: center;
}

.media-gallery-title {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.04em;
}

.media-gallery-subtitle {
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(30, 41, 59, 0.72);
  text-align: center;
}

.media-gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
  justify-items: center;
  grid-template-rows: auto 1fr;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-card:hover,
.media-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
}

.media-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-width: 280px;
  justify-self: center;
}

.media-card figcaption {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: #111827;
  max-width: 260px;
  align-self: end;
}

.terms-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(30, 64, 175, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.terms-button:hover,
.terms-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(14, 165, 233, 0.32);
}

.site-footer {
  margin: 48px auto 16px;
  padding: 24px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer .terms-button {
  color: #ffffff;
  text-decoration: none;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f172a;
}

.footer-info {
  margin: 0;
}
.feature-heading h2 {
  margin: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(14, 165, 233, 0.48));
  box-shadow: 0 12px 24px rgba(14, 75, 188, 0.18);
  color: #0b2548;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

section h2 {
  margin: 0 0 6px;
  font-size: 1.125rem;
}


.contact-box {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(15, 97, 255, 0.16);
  background: linear-gradient(145deg, rgba(15, 98, 255, 0.08), rgba(23, 149, 242, 0.08));
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.contact-announcement {
  margin: 0;
  font-weight: 700;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  color: #0f62fe;
  background-image: linear-gradient(120deg, #0f62fe, #194ef5, #47c5f3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 12px rgba(15, 98, 255, 0.3);
}

.contact-announcement::before,
.contact-announcement::after {
  content: "✦";
  display: inline-block;
  font-size: 1em;
  color: rgba(25, 78, 245, 0.8);
  margin: 0 12px;
}

.contact-text {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.whatsapp-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #f0fdf4;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 28px rgba(10, 112, 58, 0.35);
  width: fit-content;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(34, 197, 94, 0.45), 0 0 0 6px rgba(34, 197, 94, 0.18);
  outline: none;
}

.feature-list {
  margin: 12px 0 0;
  padding: 0 0 0 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.feature-list li {
  line-height: 1.5;
}

p {
  margin: 0;
}

@media (max-width: 640px) {

  .container {
    padding: 16px;
  }

  section {
    padding: 14px;
  }

  .hero .container {
    padding-top: 56px;
    padding-bottom: 64px;
    gap: 12px;
  }

  .hero-eyebrow {
    height: 32px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  header h1 {
    font-size: clamp(2rem, 6vw + 1.2rem, 2.8rem);
  }

  header .subtitle {
    font-size: 1.05rem;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .contact-box {
    padding: 18px;
  }
}
