/*
Theme Name:  PaulaTarot
Theme URI:   https://paulatarot.cl
Author:      Raul De La Reguera	
Author URI:  https://partimos.cl
Description: Tema WordPress para tarotista. Landing page con hero, servicios, promociones, sección "sobre mí" y formulario de reservas. Diseño celestial con estética de ángeles, arcángeles y tarot. 100% SEO optimizado y responsive.
Version:     2.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paulatarot
Tags:        one-page, custom-colors, custom-logo, full-width-template, translation-ready
*/

/* ═══════════════════════════════════════════════════════
   TOKENS — colores, fuentes, sombras
═══════════════════════════════════════════════════════ */
:root {
  --bg:             #FFFFE0;
  --surface:        #FFFFFF;
  --surface-2:      #FFFFF0;
  --navy:           #001f5b;
  --rose:           #EF9BBE;
  --rose-deep:      #C9557F;
  --lavender:       #B8A0D8;
  --lavender-deep:  #6E4FA0;
  --sky:            #83C5D5;
  --gold:           #D4A843;
  --gold-light:     #EDD07A;
  --text-h:         #001f5b;
  --text-b:         #001f5b;
  --text-muted:     #335588;
  --border:         rgba(0,31,91,0.15);
  --shadow-soft:    rgba(0,31,91,0.07);
  --shadow-mid:     rgba(0,31,91,0.13);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 70px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text-b);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a  { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Dancing Script', cursive;
  color: var(--text-h);
  text-wrap: balance;
  line-height: 1.15;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.pt-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pt-nav__logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lavender-deep);
}
.pt-nav__logo span { color: var(--rose-deep); }

.pt-nav__menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.pt-nav__menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-b);
  transition: color 0.2s;
}
.pt-nav__menu a:hover { color: var(--rose-deep); }
.pt-nav__menu a:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; border-radius: 2px; }

.pt-nav__cta,
.pt-nav__menu .nav-cta a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 2rem !important;
  background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep)) !important;
  color: #fff !important;
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 14px rgba(110,79,160,0.3) !important;
}
.pt-nav__cta:hover,
.pt-nav__menu .nav-cta a:hover { opacity: 0.88; transform: translateY(-1px); }

/* Mobile hamburger */
.pt-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.pt-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.pt-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.pt-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #FFFFE0 0%, #FFFFF0 45%, #FFFFE0 100%);
  z-index: 0;
}

#pt-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pt-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 4% 5rem 10%;
}

.pt-hero__content .eyebrow { margin-bottom: 1rem; }

.pt-hero__content h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.pt-hero__content h1 em {
  font-style: normal;
  color: var(--rose-deep);
}

.pt-hero__content > p {
  font-size: 1rem;
  max-width: 38ch;
  margin-bottom: 2.4rem;
  color: var(--text-b);
}

/* Botones principales */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep));
  color: white;
  box-shadow: 0 8px 24px rgba(110,79,160,0.32);
  transition: transform 0.22s, box-shadow 0.22s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(110,79,160,0.4); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  border: none;
  background: var(--gold);
  color: #1a0a00;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-full {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 3rem;
  border: none;
  background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep));
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(110,79,160,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.btn-full:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(110,79,160,0.4); }
.btn-full:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Trust row */
.pt-hero__trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.8rem;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero right — orb decorativo */
.pt-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 10% 4rem 4%;
  min-height: calc(100vh - 64px);
}

.orb-ring {
  width: min(440px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 38% 36%,
    rgba(255,210,232,0.65) 0%,
    rgba(210,185,255,0.45) 38%,
    rgba(170,220,240,0.3) 68%,
    transparent 100%
  );
}

.orb-border {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: orbit-spin 30s linear infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.orb-border::before,
.orb-border::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.orb-border::before { top: -5px; left: 50%; transform: translateX(-50%); }
.orb-border::after  { bottom: -5px; left: 50%; transform: translateX(-50%); }

.orb-inner { text-align: center; padding: 2.5rem; }
.orb-icon  { font-size: 3.5rem; line-height: 1; margin-bottom: 1rem; display: block; }
.orb-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lavender-deep);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.orb-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   SECCIONES — estructura común
═══════════════════════════════════════════════════════ */
.pt-section { padding: 6rem 6%; }
.pt-section__inner { max-width: 1080px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-top: 0.5rem; }
.section-header p {
  max-width: 48ch;
  margin: 0.8rem auto 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════════════════════ */
.pt-services { background: var(--surface-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.svc-card.card-rose::before  { background: linear-gradient(90deg, var(--rose), var(--lavender)); }
.svc-card.card-sky::before   { background: linear-gradient(90deg, var(--sky), var(--lavender)); }
.svc-card.card-gold::before  { background: linear-gradient(90deg, var(--gold), var(--rose)); }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px var(--shadow-mid); }

.card-emoji { font-size: 2rem; line-height: 1; }
.svc-card h3 { font-size: 1.45rem; font-weight: 700; }
.card-sub  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.promo-list { list-style: none; display: flex; flex-direction: column; }
.promo-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  gap: 0.5rem;
}
.promo-item:last-child { border-bottom: none; }
.promo-name { color: var(--text-b); font-weight: 400; flex: 1; }
.promo-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-h);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.badge-rec {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
  color: white;
  padding: 0.12rem 0.45rem;
  border-radius: 1rem;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════
   TARJETAS CON IMAGEN (nuevo layout 2×2)
═══════════════════════════════════════════════════════ */
.svc-card-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card-img:hover { transform: translateY(-5px); box-shadow: 0 14px 36px var(--shadow-mid); }

/* Zona de imagen */
.svc-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239,155,190,0.3), rgba(184,160,216,0.4));
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.svc-card-img:hover .svc-img-wrap img { transform: scale(1.04); }

/* Dos imágenes lado a lado (Oráculo) */
.svc-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.svc-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Etiqueta encima de la imagen */
.svc-img-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep));
  color: white;
  padding: 0.28rem 0.7rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(45,27,78,0.25);
}

/* Cuerpo de la tarjeta */
.svc-card-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.9rem;
}
.svc-card-body h3 { font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.svc-card-body .card-sub { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* Botón dentro de la tarjeta */
.btn-card {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  border: 1.5px solid var(--lavender);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-card:hover {
  background: var(--lavender-deep);
  color: white;
  border-color: var(--lavender-deep);
}

/* ═══════════════════════════════════════════════════════
   FREE QUESTION STRIP
═══════════════════════════════════════════════════════ */
.pt-free {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--lavender-deep) 100%);
  padding: 4.5rem 6%;
  text-align: center;
}
.pt-free h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.5rem; }
.pt-free > p { color: rgba(255,255,255,0.78); font-size: 0.93rem; margin-bottom: 2rem; }

.free-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.free-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  border: none;
  background: rgba(255,255,255,0.95);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text-h);
  outline: none;
}
.free-form input:focus { box-shadow: 0 0 0 2px var(--gold-light); }
.free-form input::placeholder { color: #9B8BAE; }

.pt-free .form-msg {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  min-height: 1.2em;
}

/* ═══════════════════════════════════════════════════════
   SOBRE MÍ
═══════════════════════════════════════════════════════ */
.pt-about .pt-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  aspect-ratio: 3/4;
  border-radius: 2rem 2rem 6rem 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-soft);
  background: linear-gradient(145deg,
    rgba(239,155,190,0.25),
    rgba(184,160,216,0.35),
    rgba(131,197,213,0.2)
  );
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder cuando no hay foto */
.about-frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.about-frame--placeholder .frame-icon { font-size: 4rem; opacity: 0.45; display: block; margin-bottom: 0.8rem; }
.about-frame--placeholder p { font-family: 'Dancing Script', cursive; font-size: 1rem; color: var(--text-muted); }

.about-bubble {
  position: absolute;
  bottom: -1.2rem; right: -1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 28px var(--shadow-mid);
  text-align: center;
  min-width: 110px;
}
.bubble-num {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavender-deep);
  line-height: 1;
  display: block;
}
.bubble-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 1.2rem; }
.about-text p  { font-size: 0.95rem; color: var(--text-b); margin-bottom: 1rem; }

.about-quote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.4rem 1.1rem 1.6rem;
  border-left: 3px solid var(--rose);
  background: var(--surface-2);
  border-radius: 0 0.8rem 0.8rem 0;
}
.about-quote p {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   RESERVAS
═══════════════════════════════════════════════════════ */
.pt-booking { background: var(--surface-2); }
.pt-booking .pt-section__inner { max-width: 700px; }
.pt-booking .section-header { margin-bottom: 2.5rem; }

.booking-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.booking-opt {
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 0.9rem;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.booking-opt:hover,
.booking-opt.active {
  border-color: var(--lavender);
  background: rgba(184,160,216,0.08);
}
.opt-title {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 0.2rem;
}
.opt-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
  color: var(--text-b);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lavender); }
.form-group textarea { resize: vertical; min-height: 90px; }

.booking-msg {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  min-height: 1.2em;
  text-align: center;
  padding: 0.4rem 0;
}
.booking-msg.success { color: #3a8c6e; }
.booking-msg.error   { color: var(--rose-deep); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 300;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.22s, box-shadow 0.22s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.pt-footer {
  padding: 2.5rem 6%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--surface);
}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lavender-deep);
}
.footer-logo span { color: var(--rose-deep); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.footer-social { display: flex; gap: 0.8rem; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  color: var(--text-muted);
}
.soc-link:hover { border-color: var(--rose); color: var(--rose-deep); }
.soc-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════
   404
═══════════════════════════════════════════════════════ */
.pt-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 6%;
}
.pt-404 h1 { font-size: 5rem; color: var(--lavender-deep); margin-bottom: 1rem; }
.pt-404 p  { color: var(--text-muted); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════
   PAULA HERO (reemplaza el hero original)
═══════════════════════════════════════════════════════ */
.pt-paula-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 6%;
  overflow: hidden;
  background: linear-gradient(140deg, #FFFFE0 0%, #FFFFF0 45%, #FFFFE0 100%);
}

.pt-paula-hero__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-paula-hero__frame {
  width: min(340px, 100%);
  aspect-ratio: 3/4;
  border-radius: 2rem 2rem 6rem 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-soft);
  background: linear-gradient(145deg,
    rgba(239,155,190,0.25),
    rgba(184,160,216,0.35),
    rgba(131,197,213,0.2)
  );
}

.pt-paula-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-paula-hero__frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.pt-paula-hero__frame--placeholder .frame-icon { font-size: 4rem; opacity: 0.45; display: block; margin-bottom: 0.8rem; }
.pt-paula-hero__frame--placeholder p { font-family: 'Dancing Script', cursive; font-size: 1rem; color: var(--text-muted); }

.pt-paula-hero__content {
  position: relative;
  z-index: 2;
}

.pt-paula-hero__content .eyebrow { margin-bottom: 1rem; }

.pt-paula-hero__content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.pt-paula-hero__content p {
  font-size: 0.95rem;
  color: var(--text-b);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN MENSAJE (cita espiritual)
═══════════════════════════════════════════════════════ */
.pt-mensaje {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.pt-mensaje__inner {
  padding: 4rem 6%;
}

.pt-mensaje__inner p {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

.pt-mensaje__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.pt-mensaje__img img {
  width: 100%;
  max-height: var(--msg-img-h, 420px);
  object-fit: cover;
  display: block;
  border-radius: 2rem 2rem 6rem 2rem;
  box-shadow: 0 8px 40px var(--shadow-soft);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════
   GRID 2-COL SERVICIOS (filas de tarjetas)
═══════════════════════════════════════════════════════ */
.svc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.svc-grid-2:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .pt-hero { grid-template-columns: 1fr; }
  .pt-hero__right { display: none; }
  .pt-hero__content { padding: 4rem 6%; }

  .pt-paula-hero { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 6%; }
  .pt-paula-hero__photo { justify-content: center; }
  .pt-paula-hero__frame { width: min(260px, 70%); }
  .pt-paula-hero__content { text-align: center; }

  .pt-mensaje { grid-template-columns: 1fr; }
  .pt-mensaje__img { padding: 0 6% 2.5rem; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .svc-grid-2 { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
  .svc-img-wrap { height: 180px; }

  .pt-about .pt-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 300px; }

  .booking-opts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .pt-nav__menu { display: none; }
  .pt-nav__toggle { display: flex; }

  .pt-nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    padding: 1.5rem 6%;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
