/* ===========================================
   LORE GONZÁLEZ · loregonzalezruiz.com
   Shared stylesheet — v1.0
   =========================================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --rose:       #D4896A;
  --sky:        #8BAFC4;
  --sage:       #7A9E8A;
  --violet:     #534AB7;
  --cream:      #FAF7F2;
  --warm-white: #FFFDF9;
  --deep:       #2C2420;
  --mid:        #6B5B52;
  --light:      #A89080;

  /* Tipografías */
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', sans-serif;

  /* Espaciado */
  --sec-pad: 92px 80px;
  --sec-pad-sm: 60px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--warm-white);
  color: var(--deep);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===========================================
   ARCO IRIS (top bar)
   =========================================== */
.rainbow {
  height: 4px;
  background: linear-gradient(90deg, #C9A96E, #D4896A, #C87EA8, #8BAFC4, #7A9E8A, #C9A96E);
}

/* ===========================================
   NAVEGACIÓN
   =========================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 249, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, .18);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(44, 36, 32, .08); }

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--deep);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 40px;
  transition: background .25s !important;
}
.nav-cta:hover { background: #8A6030 !important; }

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  transition: all .3s;
}

/* ===========================================
   BOTÓN WHATSAPP FLOTANTE
   =========================================== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===========================================
   SECCIONES GENÉRICAS
   =========================================== */
.sec {
  padding: var(--sec-pad);
}
.sec-dark {
  background: var(--deep);
  padding: var(--sec-pad);
}
.sec-cream { background: var(--cream); }
.inner { max-width: 1100px; margin: 0 auto; }

/* Labels, headings */
.label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label-light { color: rgba(201, 169, 110, .8); }

.h1 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
}
.h2 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 24px;
}
.h3 {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--deep);
}
.h2 em, .h3 em, .h1 em { font-style: italic; color: var(--gold); }
.h2-light { color: #fff; }

/* Texto de cuerpo */
.body-text {
  color: var(--mid);
  font-size: .98rem;
  line-height: 1.85;
}
.body-text p { margin-bottom: 16px; }
.body-text strong { color: var(--deep); font-weight: 500; }

/* Quote block */
.quote-block {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 169, 110, .07);
  border-radius: 0 8px 8px 0;
}
.quote-block p {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.55;
  margin: 0;
}

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  background: rgba(201, 169, 110, .1);
  border: 1px solid rgba(201, 169, 110, .28);
  color: var(--mid);
  padding: 5px 13px;
  border-radius: 40px;
  font-size: .74rem;
}

/* Disclaimer */
.disclaimer {
  font-size: .76rem;
  color: var(--light);
  font-style: italic;
  margin-top: 14px;
}

/* ===========================================
   BOTONES
   =========================================== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 30px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.btn-gold:hover { background: #8A6030; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 13px 30px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  padding: 13px 28px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
}
.btn-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}
.btn-wa:hover { background: #1ebe5d; }

.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}
.btn-wa-lg:hover { background: #1ebe5d; }

/* Small buttons */
.btn-sm {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: .76rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-sm.gold { background: var(--gold); color: #fff; }
.btn-sm.gold:hover { background: #8A6030; }
.btn-sm.outline { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-sm.outline:hover { background: var(--gold); color: #fff; }
.btn-sm.wa-sm { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.35); color: #25D366; }
.btn-sm.wa-sm:hover { background: rgba(37,211,102,.25); }
.btn-sm.hotmart { background: #ec1f27; color: #fff; }
.btn-sm.hotmart:hover { background: #c41820; }
.btn-sm.bold-co { background: #00b4d8; color: #fff; }
.btn-sm.bold-co:hover { background: #0096b7; }
.btn-sm.amazon { background: #FF9900; color: #111; }
.btn-sm.amazon:hover { background: #e68800; }

/* Grupos de botones */
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===========================================
   STATS
   =========================================== */
.stats-row {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 110, .2);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label { font-size: .68rem; color: var(--light); }

/* ===========================================
   TARJETAS DE TESTIMONIO
   =========================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--warm-white);
  border-radius: 14px;
  padding: 28px 26px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--font-d);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 10px; left: 18px;
  opacity: .5;
}
.testi-card p {
  font-family: var(--font-d);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.7;
  padding-top: 26px;
  margin-bottom: 14px;
}
.testi-autor {
  font-size: .76rem;
  font-weight: 500;
  color: var(--gold);
}

/* ===========================================
   CARDS DE VIDEO
   =========================================== */
.vid-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 16px;
  overflow: hidden;
}
.vid-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #3D2E28, #1A1210);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vid-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,169,110,.25);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition: background .2s;
}
.vid-thumb:hover .play-btn { background: rgba(201,169,110,.45); }
.vid-body { padding: 18px 22px; }
.vid-body h4 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}
.vid-body p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ===========================================
   HERO PÁGINA INTERIOR
   =========================================== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 80px 64px;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(201,169,110,.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(139,175,196,.12) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%; }

/* ===========================================
   SECCIÓN CTA FINAL (compartida)
   =========================================== */
.cta-sec {
  background: linear-gradient(135deg, var(--deep) 0%, #1A1210 100%);
  text-align: center;
  padding: 110px 80px;
}
.cta-sec .h2 { color: #fff; max-width: 680px; margin: 0 auto 22px; }
.cta-sec p {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--deep);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}
.footer-note {
  font-size: .7rem;
  color: rgba(255,255,255,.26);
  text-align: center;
  max-width: 420px;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a {
  font-size: .68rem;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  text-decoration: none;
  transition: color .2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-social a svg { transition: opacity .2s; }
.footer-social a:hover svg { opacity: 1; }

/* ===========================================
   GALERÍA
   =========================================== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #E8D5B0, #C9A96E);
  aspect-ratio: 1/1;
}
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 380px; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-ph {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: rgba(44,36,32,.35);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}
.gal-ph strong {
  font-family: var(--font-d);
  font-style: italic;
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .02em;
  text-transform: none;
}

/* Tag "próximamente" */
.tag-pronto {
  display: inline-block;
  background: rgba(201,169,110,.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,.28);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ===========================================
   PLACEHOLDER FOTOS (mientras llegan imágenes)
   =========================================== */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: rgba(44,36,32,.35);
  font-family: var(--font-d);
  font-style: italic;
  font-size: .9rem;
  text-align: center;
  padding: 30px;
  gap: 8px;
}
.photo-placeholder span {
  font-family: var(--font-b);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .5;
}

/* ===========================================
   RESPONSIVE — MOBILE
   =========================================== */
@media (max-width: 900px) {
  :root { --sec-pad: 64px 28px; }

  nav { padding: 12px 20px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--warm-white); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .85rem; }
  .nav-burger { display: flex; z-index: 101; }

  .stats-row { gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.tall { grid-row: span 1; min-height: 180px; aspect-ratio: 1/1; }

  footer { flex-direction: column; text-align: center; padding: 32px 22px; }
  .page-hero { padding: 100px 24px 48px; }

  .cta-sec { padding: 64px 24px; }
}

@media (max-width: 600px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
}
