/* =========================================================
   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; }
}


/* =========================================================
   Rediseño de tarjetas de lecturas - 6 tiradas
   ========================================================= */

.readings-intro {
  max-width:820px;
}

.cards-grid {
  gap:26px;
}

.card {
  position:relative;
  overflow:hidden;
  padding:26px 22px 24px;
  border-radius:28px;
  background:
    radial-gradient(circle at top, rgba(242,211,145,.18), transparent 36%),
    rgba(255,255,255,.76);
}

.card::before {
  content:'';
  position:absolute;
  inset:12px;
  border:1px solid rgba(217,173,99,.16);
  border-radius:22px;
  pointer-events:none;
}

.card-icon {
  width:104px;
  height:104px;
  margin:0 auto 17px;
  padding:7px;
  position:relative;
  z-index:1;
}

.card-icon-symbol {
  background:
    radial-gradient(circle at 50% 42%, rgba(242,211,145,.28), transparent 56%),
    #fff8ef;
  color:#9a642b;
  font-size:48px;
  font-family:Georgia, 'Times New Roman', serif;
  line-height:1;
}

.card-icon-symbol span {
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  border-radius:50%;
  background:rgba(255,255,255,.6);
}

.card h3 {
  position:relative;
  z-index:1;
  margin-bottom:7px;
  font-size:clamp(27px, 2.4vw, 34px);
}

.card-subtitle {
  position:relative;
  z-index:1;
  color:#8b5b25;
  font:700 14px/1.35 Arial, sans-serif;
  margin:0 auto 12px;
  min-height:20px;
}

.format-pill {
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  max-width:100%;
  margin:0 auto 14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(59,24,71,.08);
  color:var(--plum);
  font:700 13px/1.2 Arial, sans-serif;
}

.price {
  position:relative;
  z-index:1;
  font-size:42px;
  line-height:1;
  margin:2px 0 14px;
}

.card p {
  position:relative;
  z-index:1;
  margin-bottom:18px;
}

.reading-details {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
  padding:16px 0 18px;
  margin-top:auto;
  border-top:1px solid rgba(217,173,99,.22);
}

.reading-details span {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:6px 6px;
  color:var(--text);
  font:700 12px/1.25 Arial, sans-serif;
  border-right:1px solid rgba(217,173,99,.18);
}

.reading-details span:last-child {
  border-right:0;
}

.card .btn {
  position:relative;
  z-index:1;
  width:100%;
  margin-top:0;
}

@media (max-width: 1040px) {
  .cards-grid {
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .card {
    padding:24px 18px 22px;
  }

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

  .card h3 {
    font-size:29px;
  }

  .reading-details {
    grid-template-columns:1fr;
    gap:0;
    padding:12px 0 16px;
  }

  .reading-details span {
    border-right:0;
    border-bottom:1px solid rgba(217,173,99,.16);
  }

  .reading-details span:last-child {
    border-bottom:0;
  }
}


/* =========================================================
   Ajuste final de cards: modalidad simplificada por color
   ========================================================= */

.card {
  padding:26px 22px 24px;
}

.card-icon {
  width:106px;
  height:106px;
  margin-bottom:17px;
}

.card-subtitle {
  min-height:auto;
  margin-bottom:10px;
  font-style:italic;
  font-family:Georgia, 'Times New Roman', serif;
  font-weight:500;
  color:#6b3b24;
}

.price {
  margin:0 0 15px;
  font-size:38px;
}

.card p {
  margin-bottom:17px;
}

.format-pill {
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:auto;
  margin:0 auto 17px;
  padding:7px 13px;
  border-radius:999px;
  font:700 12px/1 Arial, sans-serif;
  letter-spacing:.2px;
  text-transform:none;
}

.format-pill svg {
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.format-pill.is-recorded {
  background:rgba(151, 101, 214, .16);
  color:#5e2aa0;
  border:1px solid rgba(151, 101, 214, .18);
}

.format-pill.is-live {
  background:rgba(46, 132, 104, .16);
  color:#1f6f59;
  border:1px solid rgba(46, 132, 104, .2);
}

.reading-details {
  display:none;
}

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

@media (max-width:720px) {
  .format-pill {
    margin-bottom:16px;
  }
}


/* =========================================================
   Mobile: tarjetas de lecturas en formato horizontal
   ========================================================= */

@media (max-width: 720px) {
  .lecturas-preview,
  .lecturas-shell {
    padding-top:44px;
  }

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

  .card {
    display:grid;
    grid-template-columns:104px 1fr;
    grid-template-areas:
      "icon title"
      "icon subtitle"
      "icon price"
      "icon modality"
      "button button";
    column-gap:18px;
    row-gap:4px;
    text-align:left;
    align-items:center;
    padding:22px 18px;
    border-radius:24px;
    min-height:auto;
  }

  .card::before {
    inset:9px;
    border-radius:19px;
  }

  .card-icon {
    grid-area:icon;
    width:96px;
    height:96px;
    margin:0;
    align-self:center;
  }

  .card h3 {
    grid-area:title;
    margin:0;
    font-size:26px;
    line-height:1.08;
    text-align:left;
  }

  .card-subtitle {
    grid-area:subtitle;
    margin:3px 0 2px;
    font-size:14px;
    line-height:1.25;
    text-align:left;
  }

  .price {
    grid-area:price;
    margin:4px 0 5px;
    font-size:31px;
    line-height:1;
    text-align:left;
  }

  .format-pill {
    grid-area:modality;
    justify-self:start;
    margin:0;
    padding:7px 12px;
    font-size:12px;
  }

  .format-pill svg {
    width:15px;
    height:15px;
  }

  .card p {
    display:none;
  }

  .card .btn {
    grid-area:button;
    width:100%;
    margin-top:16px;
    min-height:48px;
    border-radius:999px;
    font-size:16px;
  }
}

@media (max-width: 390px) {
  .card {
    grid-template-columns:88px 1fr;
    column-gap:14px;
    padding:20px 15px;
  }

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

  .card h3 {
    font-size:23px;
  }

  .card-subtitle {
    font-size:13px;
  }

  .price {
    font-size:28px;
  }
}


/* =========================================================
   Mobile: mostrar descripción dentro de cada tarjeta
   ========================================================= */

@media (max-width: 720px) {
  .card {
    grid-template-columns:100px 1fr;
    grid-template-areas:
      "icon title"
      "icon subtitle"
      "icon price"
      "icon modality"
      "description description"
      "button button";
    row-gap:5px;
  }

  .card p {
    grid-area:description;
    display:block;
    text-align:left;
    margin:14px 2px 0;
    padding-top:14px;
    border-top:1px solid rgba(217,173,99,.18);
    font:14px/1.55 Arial, sans-serif;
    color:var(--text);
  }

  .card .btn {
    margin-top:14px;
  }
}

@media (max-width: 390px) {
  .card {
    grid-template-columns:86px 1fr;
  }

  .card p {
    font-size:13.5px;
    line-height:1.5;
  }
}


/* =========================================================
   Nota de métodos de pago
   ========================================================= */

.payment-note {
  max-width:860px;
  margin:34px auto 0;
  padding:24px 28px;
  display:grid;
  grid-template-columns:78px 1fr;
  gap:22px;
  align-items:center;
  border:1px solid rgba(151, 101, 214, .26);
  border-radius:22px;
  background:
    radial-gradient(circle at right top, rgba(217,173,99,.14), transparent 28%),
    rgba(255,255,255,.72);
  box-shadow:0 14px 34px rgba(43,18,52,.08);
  color:var(--text);
}

.payment-icon {
  width:76px;
  height:76px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#6a2aa0;
  background:rgba(151, 101, 214, .12);
  border:1px solid rgba(151, 101, 214, .24);
}

.payment-icon svg {
  width:38px;
  height:38px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.payment-note h3 {
  margin:0 0 8px;
  color:var(--plum);
  font:700 15px/1.3 Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.payment-note p {
  margin:0 0 6px;
  color:var(--text);
  font:16px/1.55 Arial, sans-serif;
}

.payment-note p:last-child {
  margin-bottom:0;
}

@media (max-width:720px) {
  .payment-note {
    grid-template-columns:1fr;
    text-align:center;
    gap:14px;
    padding:24px 20px;
    margin-top:26px;
  }

  .payment-icon {
    margin:0 auto;
  }

  .payment-note p {
    font-size:15px;
  }
}


/* =========================================================
   Botones con sensación más clara de interacción
   ========================================================= */

.btn,
.card .btn,
.header-inner .btn,
.actions .btn,
.cta-panel .btn,
.workshop-price + .btn {
  cursor:pointer;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(242,211,145,.35);
  transform:translateY(0);
  will-change:transform, box-shadow, filter;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.btn::after,
.card .btn::after,
.header-inner .btn::after,
.actions .btn::after,
.cta-panel .btn::after,
.workshop-price + .btn::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 42%, transparent 72%);
  transform:translateX(-130%);
  transition:transform .55s ease;
  pointer-events:none;
}

.btn:hover,
.card .btn:hover,
.header-inner .btn:hover,
.actions .btn:hover,
.cta-panel .btn:hover,
.workshop-price + .btn:hover {
  transform:translateY(-3px);
  filter:saturate(1.08) brightness(1.04);
  box-shadow:
    0 18px 34px rgba(43,18,52,.2),
    0 8px 18px rgba(217,173,99,.16);
  border-color:rgba(242,211,145,.7);
}

.btn:hover::after,
.card .btn:hover::after,
.header-inner .btn:hover::after,
.actions .btn:hover::after,
.cta-panel .btn:hover::after,
.workshop-price + .btn:hover::after {
  transform:translateX(130%);
}

.btn:active,
.card .btn:active,
.header-inner .btn:active,
.actions .btn:active,
.cta-panel .btn:active,
.workshop-price + .btn:active {
  transform:translateY(-1px) scale(.99);
  box-shadow:
    0 9px 18px rgba(43,18,52,.18),
    0 4px 10px rgba(217,173,99,.12);
}

.btn:focus-visible,
.card .btn:focus-visible,
.header-inner .btn:focus-visible,
.actions .btn:focus-visible,
.cta-panel .btn:focus-visible,
.workshop-price + .btn:focus-visible {
  outline:3px solid rgba(242,211,145,.72);
  outline-offset:4px;
}

/* Botón morado de las tarjetas */
.btn-dark:hover {
  background:linear-gradient(135deg,#4b1d58,#2b1234);
  color:#fff1bd;
}

/* Botón dorado principal */
.btn:not(.btn-dark):hover {
  background:linear-gradient(135deg,#ffe29a,#d6a04d);
  color:#1b0d1f;
}

/* Botón flotante de WhatsApp: más evidente como botón */
.whatsapp-float {
  cursor:pointer;
  border:1px solid rgba(255,255,255,.36);
}

.whatsapp-float:hover {
  transform:translateY(-4px) scale(1.04);
  filter:saturate(1.1) brightness(1.03);
  box-shadow:
    0 20px 38px rgba(16,109,55,.42),
    0 8px 18px rgba(37,211,102,.28);
}

.whatsapp-float:active {
  transform:translateY(-1px) scale(.98);
}

/* Iconos sociales también se sienten clicables */
.social-links a {
  cursor:pointer;
}

.social-links a:hover {
  box-shadow:0 10px 22px rgba(217,173,99,.14);
}

@media (hover:none) {
  .btn:hover,
  .card .btn:hover,
  .header-inner .btn:hover,
  .actions .btn:hover,
  .cta-panel .btn:hover,
  .workshop-price + .btn:hover,
  .whatsapp-float:hover {
    transform:none;
    filter:none;
  }
}
