:root {
  color-scheme: light;
  --bg: #f4f8ff;
  --card: rgba(255, 255, 255, 0.92);
  --text: #141a2a;
  --muted: #51607f;
  --accent: #1e7db5;
  --accent-2: #ff9f1c;
  --accent-3: #19b7a7;
  --border: rgba(20, 26, 42, 0.1);
  --shadow: 0 22px 60px rgba(14, 32, 71, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #e9f1ff 45%, #dfe9ff 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.page {
  position: relative;
  width: min(880px, 100%);
  display: grid;
  place-items: center;
  animation: fadeIn 0.6s ease both;
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
}

.glow-1 {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(30, 125, 181, 0.5), transparent 70%);
}

.glow-2 {
  bottom: -140px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.45), transparent 70%);
}

.glow-3 {
  top: 25%;
  right: -120px;
  background: radial-gradient(circle, rgba(25, 183, 167, 0.45), transparent 70%);
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: floatIn 0.7s ease both;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  box-shadow: 0 12px 26px rgba(20, 26, 42, 0.18);
}

.logo-text {
  display: grid;
  gap: 2px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0b1327;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.primary-links {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.link-btn {
  text-decoration: none;
  color: inherit;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(20, 26, 42, 0.08);
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  position: relative;
  overflow: hidden;
}

.link-btn::after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 16px;
  opacity: 0.85;
}

.link-btn .label {
  font-weight: 600;
  font-size: 18px;
}

.link-btn .meta {
  font-size: 14px;
  color: rgba(20, 26, 42, 0.7);
}

.link-btn .cta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(13, 22, 46, 0.18);
}

.link-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.link-btn.gradient {
  background: linear-gradient(135deg, #1e7db5 0%, #23c0b1 100%);
  color: #ffffff;
}

.link-btn.bright {
  background: linear-gradient(135deg, #ff9f1c 0%, #ff7a59 100%);
  color: #ffffff;
}

.link-btn.dark {
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  border-color: rgba(20, 26, 42, 0.12);
  color: #141a2a;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.info-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 26, 42, 0.08);
}

.info-item h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--accent);
}

.info-item p {
  font-size: 14px;
  color: var(--muted);
}

.videos {
  margin-bottom: 32px;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.section-title p {
  color: var(--muted);
  font-size: 14px;
}

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

.video-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 26, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(13, 22, 46, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: left;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
}

.video-link:hover .video-info h3 {
  text-decoration: underline;
}

.video-link:hover .video-card,
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 22, 46, 0.12);
}

.video-thumb {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(30, 125, 181, 0.9), rgba(255, 159, 28, 0.85));
  background-size: cover;
  background-position: center;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 39, 0) 0%, rgba(11, 19, 39, 0.4) 100%);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #141a2a;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(13, 22, 46, 0.2);
  transition: transform 0.2s ease;
}

.video-link:hover .play-btn {
  transform: scale(1.08);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(10, 16, 36, 0.7);
}

.video-info {
  padding: 14px 16px 18px;
}

.video-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.video-info p {
  font-size: 13px;
  color: var(--muted);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.socials a {
  text-decoration: none;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 26, 42, 0.1);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.9);
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  border-color: rgba(20, 26, 42, 0.26);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.socials a:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-buttons {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.whatsapp-btn {
  text-decoration: none;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(135deg, #1fa86a 0%, #19c37d 100%);
  box-shadow: 0 12px 24px rgba(16, 90, 56, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 90, 56, 0.22);
}

.whatsapp-btn:active {
  transform: translateY(0) scale(0.99);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 36, 0.6);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: min(900px, 92vw);
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(12, 20, 40, 0.3);
  z-index: 1;
}

.video-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  background: rgba(20, 26, 42, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 12px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.footer .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  align-self: center;
}

@media (max-width: 640px) {
  .card {
    padding: 30px 22px;
  }

  .logo {
    padding: 8px 16px 8px 8px;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  .link-btn {
    padding: 16px 18px;
  }

  .hero h1 {
    font-size: 30px;
  }
}
