:root {
  --brand-primary: #154360;
  --brand-accent: #107588;
  --brand-support: #706677;
  --text-light: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --overlay-dark: rgba(10, 24, 34, 0.58);
  --overlay-mid: rgba(21, 67, 96, 0.42);
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-light);
  background-color: var(--brand-primary);
}

img {
  max-width: 100%;
  display: block;
}

.coming-soon {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-logo {
  width: clamp(150px, 42vw, 210px);
  height: auto;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 40px;
  background-image:
    linear-gradient(135deg, var(--overlay-dark), var(--overlay-mid)),
    url("assets/bkgcel.png");
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 28px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  font-size: 0.75rem;
  background: rgba(112, 102, 119, 0.6);
  border-radius: 999px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
}

/* SOCIAL */
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  transition: 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.social-icon[aria-label="YouTube"]:hover {
  background: #FF0000;
}

.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

/* ANIMACIÓN */
.social-icon:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .site-header {
    left: 32px;
    transform: none;
    justify-content: flex-start;
  }

  .social-icon {
    width: 46px;
    height: 46px;
  }
}