/* Vega Miranda — Estilos personalizados */
/* Google Fonts se carga via <link> en el <head> de cada página */

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

body {
  font-family: 'DM Sans', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #B8960C; border-radius: 3px; }

/* ── Fuentes ── */
.script-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.1;
  font-optical-sizing: auto;
  font-weight: 400;
}

/* ── Logo ── */
.logo-text {
  line-height: 1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

/* ── Hero watermark — override en <style> del index ── */
/* (reglas en <style> del index.html tienen precedencia) */

/* ── Foto circular — mobile-first ── */
.photo-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #B8960C;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(184,150,12,0.12), 0 8px 32px rgba(0,0,0,0.5);
}
@media (min-width: 640px) {
  .photo-ring { width: 185px; height: 185px; }
}
@media (min-width: 900px) {
  .photo-ring { width: 230px; height: 230px; }
}

/* ── Cards oscuras ── */
.dark-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.dark-card:hover {
  border-color: rgba(184,150,12,0.45);
}

/* ── Typography helpers (compartidos entre páginas) ── */
.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.3rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

/* ── Watermark interna (servicios) ── */
.card-watermark {
  position: absolute;
  bottom: -12%;
  right: -8%;
  width: 70%;
  opacity: 0.04;
  pointer-events: none;
}

/* ── Agenda circle ── */
.agenda-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a80e 0%, #B8960C 60%, #9a7a08 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  color: #000;
  padding: 1rem;
  box-shadow: 0 6px 32px rgba(184,150,12,0.45), 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.agenda-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(184,150,12,0.55), 0 4px 12px rgba(0,0,0,0.2);
}

/* ── Inputs oscuros ── */
.input-dark {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.input-dark:focus { border-color: #B8960C; }
.input-dark::placeholder { color: rgba(255,255,255,0.3); }

/* ── Botón dorado ── */
.btn-gold {
  background: #B8960C;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: #d4ac0e; transform: translateY(-1px); }

/* ── Stars ── */
.stars { color: #B8960C; font-size: 0.9rem; letter-spacing: 3px; }

/* ── Social icons ── */
.social-icon-ig {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-icon-fb {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1877F2;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Divisor dorado ── */
.gold-divider {
  width: 40px;
  height: 2px;
  background: #B8960C;
  margin: 0.5rem 0 1rem;
}
