/* ════════════════════════════════════════════════════════════════
   PROXIMAMENTE.CSS — Página "Próximamente" / Coming soon
   Requiere que css/base.css esté cargado antes para los colores
   (--cream, --red, --butter, etc.)
   ════════════════════════════════════════════════════════════════ */

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

html, body { height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ───────────────────────────────────────────── */
/* DECORATIVE BACKGROUND BLOBS                    */
/* ───────────────────────────────────────────── */

.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--butter);
  opacity: 0.35;
  top: -160px;
  right: -140px;
}

.blob-2 {
  width: 320px;
  height: 320px;
  background: var(--red);
  opacity: 0.08;
  bottom: -120px;
  left: -100px;
}

/* ───────────────────────────────────────────── */
/* LAYOUT                                          */
/* ───────────────────────────────────────────── */

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

header.top {
  padding: 32px 0;
  text-align: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  display: inline-block;
}

.logo span { color: var(--red); }

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 48px;
}

.content { text-align: center; }

/* ───────────────────────────────────────────── */
/* OVEN TIMER — signature element                 */
/* ───────────────────────────────────────────── */

.timer {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  position: relative;
}

.timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.timer-track {
  fill: none;
  stroke: var(--cream-2);
  stroke-width: 6;
}

.timer-progress {
  fill: none;
  stroke: var(--red);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 70;
  animation: bake 3s ease-in-out infinite alternate;
}

@keyframes bake {
  0% { stroke-dashoffset: 220; }
  100% { stroke-dashoffset: 40; }
}

.timer-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  color: var(--espresso);
}

/* ───────────────────────────────────────────── */
/* TYPOGRAPHY                                      */
/* ───────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-d);
  background: rgba(192,57,43,0.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

h1 em {
  font-style: italic;
  color: var(--red);
}

.sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--espresso-2);
  max-width: 460px;
  margin: 0 auto 36px;
}

/* ───────────────────────────────────────────── */
/* EMAIL FORM                                      */
/* ───────────────────────────────────────────── */

.form-card {
  background: var(--white);
  border: 2px solid var(--espresso);
  border-radius: 100px;
  padding: 6px;
  display: flex;
  gap: 6px;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 6px 0 rgba(43,24,16,0.08);
}

.form-card input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 100px;
  min-width: 0;
}

.form-card input:focus {
  outline: none;
  background: var(--cream-2);
}

.form-card button {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.18s ease;
}

.form-card button:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .form-card {
    flex-direction: column;
    border-radius: 22px;
  }
  .form-card input { padding: 12px 16px; }
  .form-card button { width: 100%; }
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--taupe);
  margin-top: 14px;
}

/* ───────────────────────────────────────────── */
/* SOCIALS / FOOTER                                */
/* ───────────────────────────────────────────── */

.socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.socials a:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.socials svg { width: 20px; height: 20px; }

.community-tag {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--taupe);
  text-align: center;
}

.community-tag strong {
  color: var(--espresso);
  font-family: var(--font-display);
}

footer.bottom {
  text-align: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: var(--taupe);
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
