/* =========================================================
   Viviana Arcana - estilos compartidos
   Un solo archivo para que la web sea más fácil de mantener.
   ========================================================= */

:root {
  --plum:#1b0d1f;
  --plum-2:#2b1234;
  --plum-3:#3b1847;
  --gold:#d9ad63;
  --gold-soft:#f2d391;
  --cream:#fbf3e7;
  --cream-2:#fff9f0;
  --ink:#28142f;
  --text:#513a55;
  --shadow:0 18px 42px rgba(43,18,52,.12);
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at top left, rgba(217,173,99,.16), transparent 28%),
    linear-gradient(135deg, #120716, #2b1234 55%, #19081e);
  color:var(--cream);
}

img { max-width:100%; display:block; }

a { color:inherit; text-decoration:none; }

.container {
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

/* Header y navegación */
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(27,13,31,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,173,99,.28);
}

.header-inner {
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img {
  width:min(310px, 46vw);
  height:auto;
}

.site-nav {
  display:flex;
  gap:34px;
  font-size:19px;
  align-items:center;
}

.site-nav a {
  position:relative;
  color:rgba(255,249,240,.92);
}

.site-nav a::after {
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform:scaleX(1);
}

/* Botones */
.btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  background:linear-gradient(135deg,#f1d28b,#c99043);
  color:#231029;
  font-weight:700;
  box-shadow:0 14px 34px rgba(217,173,99,.22);
  font-family:Arial, sans-serif;
  letter-spacing:.2px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(217,173,99,.28);
}

.btn-dark {
  background:linear-gradient(135deg,#381642,#210d27);
  color:var(--gold-soft);
  box-shadow:none;
}

/* Textos reutilizables */
.eyebrow {
  color:#d1984d;
  text-transform:uppercase;
  letter-spacing:3px;
  font:600 18px Arial, sans-serif;
  margin-bottom:18px;
}

.ornament {
  color:#b8833d;
  letter-spacing:8px;
  margin-top:12px;
}

.page-head {
  text-align:center;
  margin-bottom:36px;
  padding-inline:10px;
}

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

.section-title h2,
.page-head h1 {
  margin:0;
  font-size:clamp(36px,4.5vw,58px);
  line-height:1.06;
  color:var(--plum);
  font-weight:500;
  text-wrap:balance;
}

.section-light {
  background:linear-gradient(180deg,var(--cream-2),var(--cream));
  color:var(--ink);
}

/* Tarjetas de lecturas */

.readings-intro {
  margin:24px auto 0;
  color:var(--text);
  font:18px/1.85 Arial, sans-serif;
  text-align:center;
}

.cards-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

.card {
  background:rgba(255,255,255,.72);
  border:1px solid rgba(217,173,99,.42);
  border-radius:26px;
  padding:30px 24px;
  text-align:center;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.card-icon {
  width:128px;
  height:128px;
  margin:0 auto 20px;
  border-radius:50%;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px dashed #b8833d;
  background:#fff8ef;
  padding:8px;
}

.card-icon img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
  display:block;
}

.card h3 {
  margin:0 0 8px;
  color:var(--plum);
  font-size:30px;
  line-height:1.08;
  font-weight:500;
}

.price {
  color:#a36b2c;
  font-size:38px;
  margin-bottom:14px;
}

.card p {
  font:15px/1.65 Arial, sans-serif;
  color:var(--text);
  margin:0 0 22px;
}

.card .btn {
  margin-top:auto;
}

/* Footer */
.footer {
  padding:34px 0;
  border-top:1px solid rgba(217,173,99,.26);
  color:#f2d391;
}

.footer-inner {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  font:16px/1.6 Arial, sans-serif;
}

.social-links {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.social-links a {
  width:44px;
  height:44px;
  border:1px solid rgba(217,173,99,.42);
  border-radius:999px;
  color:#f2d391;
  background:rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease, transform .2s ease, border-color .2s ease;
}

.social-links a:hover {
  background:rgba(217,173,99,.13);
  transform:translateY(-1px);
  border-color:rgba(242,211,145,.7);
}

.social-links svg {
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.social-links span {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Página inicio */
.hero {
  padding:20px 0 48px;
}

.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
  min-height:620px;
}

.hero-title {
  margin:0;
  font-size:clamp(42px,5vw,72px);
  line-height:1.02;
  font-weight:500;
  max-width:760px;
}

.hero-title em {
  color:var(--gold-soft);
  font-style:normal;
}

.intro {
  max-width:720px;
  margin:26px 0 30px;
  font:22px/1.65 Arial, sans-serif;
  color:rgba(255,249,240,.93);
}

.hero-media {
  width:min(620px, 100%);
  aspect-ratio:1/1;
  justify-self:end;
  border-radius:50%;
  overflow:hidden;
  background:transparent;
}

.hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 68%;
}

.lecturas-preview {
  padding:76px 0 82px;
}

/* Página lecturas */
.lecturas-shell {
  padding:72px 0 84px;
  min-height:calc(100vh - 180px);
}

.lecturas-shell .page-head h1 {
  max-width:100%;
}

/* Página sobre mí */
.about-shell {
  padding:64px 0 0;
}

.about-hero {
  max-width:820px;
  margin:0 auto 50px;
  text-align:center;
}

.about-hero h1 {
  margin:0;
  font-size:clamp(42px,5vw,66px);
  line-height:1.04;
  color:var(--plum);
  font-weight:500;
  text-wrap:balance;
}

.about-hero .ornament {
  margin-top:16px;
  color:#b8833d;
  letter-spacing:14px;
  font-size:18px;
}

.about-grid {
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:58px;
  align-items:center;
  padding-bottom:58px;
}

.about-copy p,
.focus-copy p {
  font:18px/1.85 Arial, sans-serif;
  color:var(--text);
  margin:0 0 18px;
  text-align:justify;
  text-justify:inter-word;
}

.about-copy p:last-child,
.focus-copy p:last-child {
  margin-bottom:0;
}

.about-photo {
  overflow:hidden;
  border-radius:36px;
  position:relative;
}

.about-photo::before {
  content:'';
  position:absolute;
  inset:12px;
  border:1px solid rgba(217,173,99,.52);
  border-radius:26px;
  z-index:1;
  pointer-events:none;
}

.about-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.photo-main {
  height:520px;
  max-width:520px;
}

.photo-main img {
  object-position:center 42%;
}

.focus-section-wrap {
  background:var(--cream);
  border-top:1px solid rgba(217,173,99,.12);
  padding:54px 0 72px;
}

.focus-section {
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:44px;
  align-items:center;
}

.focus-photo {
  height:360px;
  border-radius:34px;
}

.focus-photo img {
  object-position:center 45%;
}

.focus-copy {
  padding:8px 0;
}

.actions {
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Responsive */
@media (max-width: 1040px) {
  .header-inner {
    flex-wrap:wrap;
    justify-content:center;
    padding:16px 0;
  }

  .site-nav {
    order:3;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:22px;
  }

  .cards-grid {
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .focus-section {
    grid-template-columns:1fr;
  }

  .hero-grid {
    min-height:auto;
    text-align:left;
  }

  .hero-media {
    justify-self:center;
    width:min(540px, 100%);
  }

  .photo-main {
    max-width:100%;
    height:440px;
    margin:0;
  }

  .focus-photo {
    height:340px;
  }
}

@media (max-width: 720px) {
  .container {
    width:min(100% - 28px, 1180px);
  }

  .brand img {
    width:min(300px, 78vw);
  }

  .site-nav {
    font-size:17px;
  }

  .btn {
    padding:12px 18px;
  }

  .section-title h2,
  .page-head h1 {
    font-size:32px;
    line-height:1.1;
  }

  .page-head {
    margin-bottom:28px;
    padding-inline:4px;
  }

  .cards-grid {
    grid-template-columns:1fr;
  }

  .card-icon {
    width:112px;
    height:112px;
  }

  .footer-inner {
    flex-direction:column;
    text-align:center;
  }

  .social-links {
    justify-content:center;
  }

  .hero {
    padding:28px 0 42px;
  }

  .intro {
    font-size:18px;
  }

  .hero-media {
    width:min(420px, 100%);
  }

  .about-shell {
    padding:52px 0 0;
  }

  .about-hero {
    margin-bottom:34px;
  }

  .about-hero h1 {
    font-size:36px;
    line-height:1.08;
  }

  .about-hero .ornament {
    letter-spacing:7px;
  }

  .about-grid {
    gap:32px;
    padding-bottom:46px;
  }

  .photo-main {
    height:360px;
  }

  .focus-section-wrap {
    padding:44px 0 58px;
  }

  .focus-photo {
    height:300px;
  }

  .actions {
    justify-content:flex-start;
  }
}

/* Página talleres */
.workshop-shell {
  padding:62px 0 76px;
}

.workshop-title {
  text-align:center;
  margin-bottom:48px;
}

.workshop-title h1 {
  color:var(--plum);
  font-weight:500;
  margin:0;
  font-size:clamp(40px, 5vw, 62px);
  line-height:1.08;
  text-wrap:balance;
}

.workshop-title h1 span {
  color:#a36b2c;
}

.workshop-intro-grid {
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:58px;
  align-items:center;
  margin-bottom:68px;
}

.workshop-intro-copy p {
  font:18px/1.8 Arial, sans-serif;
  color:var(--text);
  margin:0 0 22px;
}

.workshop-intro-copy .workshop-lead {
  font:24px/1.58 Georgia, 'Times New Roman', serif;
  color:var(--plum);
  margin-bottom:26px;
}

.workshop-tags {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.workshop-tags span {
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(217,173,99,.5);
  border-radius:999px;
  color:#764b21;
  padding:10px 16px;
  font:600 14px Arial, sans-serif;
  background:rgba(255,255,255,.72);
}

.workshop-photo {
  height:600px;
  overflow:hidden;
  border-radius:44% 44% 30px 30px;
  position:relative;
}

.workshop-photo::before {
  content:'';
  position:absolute;
  inset:16px;
  border:1px solid rgba(217,173,99,.5);
  border-radius:inherit;
  z-index:1;
  pointer-events:none;
}

.workshop-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 58%;
}

.workshop-content {
  padding:62px 0 72px;
  background:rgba(255,255,255,.32);
  border-top:1px solid rgba(217,173,99,.16);
  border-bottom:1px solid rgba(217,173,99,.16);
}

.workshop-columns {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.syllabus-card,
.session-card {
  border:1px solid rgba(217,173,99,.32);
  background:rgba(255, 255, 255, .72);
  border-radius:28px;
  padding:38px 36px;
}

.syllabus-card h2 {
  color:var(--plum);
  margin:0 0 28px;
  font-size:34px;
  font-weight:500;
  line-height:1.2;
}

.syllabus-list {
  list-style:none;
  padding:0;
  margin:0;
}

.syllabus-list li {
  position:relative;
  padding:0 0 16px 28px;
  color:var(--text);
  font:17px/1.6 Arial, sans-serif;
}

.syllabus-list li::before {
  content:'✶';
  color:#b8833d;
  position:absolute;
  left:0;
  top:0;
}

.session-step {
  display:grid;
  grid-template-columns:80px 1fr;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid rgba(217,173,99,.25);
}

.session-step:last-child {
  border-bottom:0;
  padding-bottom:0;
}

.step-time {
  color:#a36b2c;
  font:700 15px Arial, sans-serif;
  padding-top:5px;
}

.session-step h3 {
  color:var(--plum);
  font-size:23px;
  line-height:1.2;
  font-weight:500;
  margin:0 0 8px;
}

.session-step p {
  color:var(--text);
  font:15px/1.6 Arial, sans-serif;
  margin:0;
}

.workshop-cta {
  padding:66px 0 0;
}

.cta-panel {
  max-width:860px;
  margin:0 auto;
  text-align:center;
  padding:10px 0 0;
}

.cta-panel .ornament {
  margin:0 0 18px;
}

.cta-panel h2 {
  color:var(--plum);
  font-size:clamp(36px, 4.2vw, 52px);
  font-weight:500;
  margin:0 0 18px;
}

.cta-panel p {
  max-width:660px;
  margin:0 auto 24px;
  color:var(--text);
  font:18px/1.75 Arial, sans-serif;
}

.workshop-price {
  color:#a36b2c;
  font-size:48px;
  line-height:1;
  margin:0 auto 22px;
}

.workshop-price + .btn {
  min-width:220px;
}

@media (max-width: 980px) {
  .workshop-intro-grid,
  .workshop-columns {
    grid-template-columns:1fr;
  }

  .workshop-photo {
    width:min(560px, 100%);
    height:520px;
    margin:0 auto;
  }
}

@media (max-width: 720px) {
  .workshop-shell {
    padding:46px 0 58px;
  }

  .workshop-title {
    margin-bottom:34px;
    padding-inline:4px;
  }

  .workshop-intro-grid {
    gap:32px;
    margin-bottom:46px;
  }

  .workshop-title h1 {
    font-size:34px;
    line-height:1.12;
  }

  .workshop-intro-copy .workshop-lead {
    font-size:21px;
  }

  .workshop-photo {
    height:430px;
    border-radius:38% 38% 22px 22px;
  }

  .workshop-content {
    padding:44px 0 52px;
  }

  .syllabus-card,
  .session-card {
    padding:30px 22px;
  }

  .syllabus-card h2 {
    font-size:29px;
  }

  .session-step {
    grid-template-columns:1fr;
    gap:8px;
  }

  .workshop-cta {
    padding-top:48px;
  }

  .workshop-price {
    font-size:42px;
  }
}



/* Enlaces legales del footer */
.footer-copy {
  display:flex;
  flex-direction:column;
  gap:7px;
}

.legal-links {
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(242,211,145,.86);
  font-size:14px;
}

.legal-links a:hover {
  color:var(--cream-2);
  text-decoration:underline;
  text-underline-offset:4px;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position:fixed;
  right:25px;
  bottom:25px;
  width:58px;
  height:58px;
  z-index:80;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#25d366;
  box-shadow:0 12px 30px rgba(16,109,55,.3);
  transition:transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform:translateY(-3px);
  box-shadow:0 17px 34px rgba(16,109,55,.38);
}

.whatsapp-float svg {
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.whatsapp-float span {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Páginas legales */
.legal-shell {
  padding:66px 0 84px;
  min-height:calc(100vh - 180px);
}

.legal-content {
  max-width:850px;
  margin:0 auto;
  padding:48px clamp(22px, 5vw, 62px);
  border:1px solid rgba(217,173,99,.3);
  background:rgba(255,255,255,.66);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.legal-content h1 {
  margin:0 0 12px;
  color:var(--plum);
  font-size:clamp(38px, 4.8vw, 54px);
  line-height:1.08;
  font-weight:500;
  text-align:center;
}

.legal-content .ornament {
  text-align:center;
  margin:0 0 38px;
}

.legal-content h2 {
  color:var(--plum);
  font-size:25px;
  line-height:1.25;
  font-weight:500;
  margin:38px 0 14px;
}

.legal-content p,
.legal-content li {
  color:var(--text);
  font:16px/1.8 Arial, sans-serif;
}

.legal-content p { margin:0 0 16px; }
.legal-content ul { padding-left:24px; margin:0 0 18px; }

.legal-data {
  padding:22px 24px;
  background:rgba(251,243,231,.78);
  border:1px solid rgba(217,173,99,.25);
  border-radius:18px;
  margin:22px 0 30px;
}

.legal-data p { margin:4px 0; }

.legal-content a:not(.btn) {
  color:#8b5b25;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width:720px) {
  .whatsapp-float {
    right:18px;
    bottom:18px;
    width:54px;
    height:54px;
  }
  .whatsapp-float svg { width:29px; height:29px; }
  .legal-shell { padding:40px 0 56px; }
  .legal-content { padding:34px 20px; border-radius:22px; }
  .legal-content .ornament { margin-bottom:26px; }
  .footer-copy { align-items:center; }
  .legal-links { justify-content:center; }
}
