h1{
    font-family: 'Playfair Display', serif;
    
    letter-spacing: 0.01em;
   font-size: 18px;margin-left:42px; color:#740da4;
  }
/* VARIABLES GLOBALES */
:root {
  --primary: #5d3fd3;
  --text-dark: #222;
  --text-light: #666;
  --bg-soft: #fcfcfc;
  --border-color: #eee;
}

/* CONTENEDORES */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. SECCIÓN INTRO Y EXPLICACIÓN */
.therapy-intro {
   
    text-align: center;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.therapy-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin: 15px 0;
}

.main-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0 60px;
}

.explanation-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.quote-block {
    text-align: center;
    padding: 40px;
    background: #fdfdfd;
    border-left: 4px solid var(--primary);
    margin-bottom: 80px;
}

.quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #333;
}

/* 2. SECCIÓN DE PAQUETES (PRICING) */
.pricing-section {
    background-color: var(--bg-soft);
    padding: 80px 0;
    width: 100%;
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LA TARJETA DEL PAQUETE */
.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card.accent {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(93, 63, 211, 0.1);
    z-index: 2;
}

/* BADGE / ETIQUETA */
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
    font-family: 'Inter', sans-serif;
}

.price-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
    min-height: 50px;
}

/* LISTA DE CARACTERÍSTICAS */
.card-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.card-features li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* BOTONES DE LOS PAQUETES */
.btn-price {
    display: block;
    padding: 15px 25px;
    background-color: var(--primary);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: background 0.3s ease;
}

.btn-price.secondary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}

.btn-price:hover {
    background-color: #4a32a8;
    color: white !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-card.accent {
        transform: scale(1);
    }
    .explanation-grid {
        grid-template-columns: 1fr;
    }
    .therapy-intro h1 {
        font-size: 2.2rem;
    }
}
.session-protocol {
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.protocol-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.protocol-item ul {
    list-style: none;
    padding: 0;
}

.protocol-item ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.protocol-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.protocol-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* HEADER IMAGE */
.header-bg-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
}
.header-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* QUOTE BACKGROUND */
.quote-block {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.quote-img-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1; /* Muy sutil */
}

/* MID PAGE IMAGE */
.mid-page-image {
    margin: 60px auto;
    text-align: center;
}
.mid-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* PROTOCOL IMAGES */
.protocol-img {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
}
.protocol-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.session-info {
    padding: 40px 20px;
    background-color: #fff;
    margin-top: -20px; /* Para acercarlo un poco a los paquetes */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.info-item strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}
/* =========================
   NAVBAR
========================= */
.navbar {
    background-color: #2d1344;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: .1rem .1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo img {
    height: 100px;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2.2rem;
  }
  
  .nav-menu a {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
  }
  
  .nav-menu a:hover {
    color: #E6DCF5;
  }
  
  .nav-cta {
    color: #1FAFB5;
    font-weight: 500;
  }
  /* =========================
   FOOTER
========================= */
/* Estilo base para el footer */
footer {
    background: linear-gradient(135deg, #4b2c71 0%, #2e1a47 100%);
    color: #e0d7ff; /* Lavanda suave para contraste espiritual */
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    border-top: 2px solid #b39ddb;
}

/* Contenedor interno */
footer > div {
    max-width: 1100px;
    margin: auto;
}

/* Ajuste del Logo */
footer img {
    max-width: 160px;
    filter: drop-shadow(0 0 10px rgba(179, 157, 219, 0.3));
    margin-bottom: 20px;
}

/* Párrafos y textos */
footer p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    color:#a59feefd;
}

/* Enlaces espirituales */
footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid rgba(179, 157, 219, 0.4);
    transition: all 0.3s ease;
}

footer a:hover {
    color: #b39ddb;
    border-bottom: 1px solid #b39ddb;
}

/* Resaltados en negrita */
footer strong {
    color: #ffffff;
    font-weight: 600;
}

/* Espaciado para el copyright y redes */
footer p:last-of-type {
    margin-top: 30px;
    color: white;
}
/* =========================
   NAVBAR
========================= */
.navbar {
  background-color: #2d1344;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: .1rem .1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 100px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-menu a:hover {
  color: #E6DCF5;
}

.nav-cta {
  color: #1FAFB5;
  font-weight: 500;
}
.navbar h1{
  font-family: 'Playfair Display', serif;
  font-weight: 100;
  letter-spacing: 0.01em;
 font-size: 18px;margin-left:42px;
}