/* ===========================================================
   🌙 CUSTOM-PAGES.CSS – ESTILOS GLOBALES RUTH MONTENEGRO
   Unificación completa de estilos para toda la web
   Evita problemas de carga, conflictos y text boosting
   Funciona en todos los navegadores (Chrome, Edge, Safari, Opera, Firefox)
=========================================================== */

/* Corrección de fuentes, espaciados y layout global */


/* Garantizar que todas las cajas respeten el contenido */
*, *::before, *::after {
  box-sizing: inherit;
  max-width: 100%;
}

/* Evitar zoom inconsistente en imágenes */
/* Fix imágenes globales — NO afectar el logo del menú */
img {
    max-width: 100%;
    height: auto;
}

/* Restaurar comportamiento inline en el logo */
header img,
.nv-navbar img,
.site-logo img {
    display: inline-block !important;
}


/* Normalización tipográfica global */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  word-break: break-word;
}

/* Botones generales */
.button, .button-primary, .button-secondary, .read-more-button {
  cursor: pointer;
  transition: all .25s ease;
}

/* ==========================================================================
   Theme: Neve Child Master – Child Theme para sitio de Ruth Montenegro
   Template: neve
   Version: 1.0.0
   Origen: 1-Css adicional con los otros dos juntos.txt :contentReference[oaicite:0]{index=0}​:contentReference[oaicite:1]{index=1}
   ========================================================================== */

/* 1) BLOQUE CTA FINAL DE CATEGORÍAS */
.cta-final {
  background-color: #f8f8f8;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}

/* 2) ESTILOS FAQ */
.faq {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.faq h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* 3) FORMULARIO DE COMENTARIOS Y LISTA DE COMENTARIOS */
.comment-respond {
  background: #FFFFFF;
  border: 2px solid #185DC5;
  padding: 20px;
  border-radius: 10px;
  font-family: "Roboto", "Segoe UI", sans-serif;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  background-color: #FFFFFF;
  border: 1px solid #185DC5;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  font-family: "Roboto", "Segoe UI", sans-serif;
}
.form-submit input[type="submit"] {
  background-color: #FFD700;
  color: #000000;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
}
.form-submit input[type="submit"]:hover {
  background-color: #6AE1CE;
}
.comment-list .comment {
  border-bottom: 1px solid #185DC5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.comment-author .avatar {
  border-radius: 50%;
  margin-right: 10px;
}
.comment-meta .comment-date {
  color: #888;
  font-size: 0.9em;
}
.comment-form .required {
  color: #185DC5;
  font-size: 1.5em;
}
.comment-form-comment label::before {
  content: "\2605";
  margin-right: 5px;
  color: #d8c2e5;
}

/* 4) RESET Y ESTILOS GLOBALES */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  img { width: 100%; }
}
h1 { font-size: 20px; line-height: 28px; font-weight: bold; }
h2 { font-size: 21px; line-height: 26px; font-weight: bold; }
h3 { font-size: 20px; line-height: 26px; font-weight: bold; }
.rituales-header h1,
.diccionario-header h1,
.blog-header h1,
.rituales-header h2,
.diccionario-header h2,
.blog-header h2,
.rituales-header h3,
.diccionario-header h3,
.blog-header h3 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
@media (max-width: 1024px) {
  h1 { font-size: 21px; line-height: 26px; }
  h2 { font-size: 19px; line-height: 24px; }
  h3 { font-size: 18px; line-height: 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 20px; line-height: 24px; }
  h2 { font-size: 18px; line-height: 22px; }
  h3 { font-size: 17px; line-height: 22px; }
}
.main-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: left;
}
.intro-text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  padding: 0 10px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.intro-text.tarotistas-center {
  text-align: center;
}

/* 5) ESTILOS OPCIONALES (Búsqueda y Cabeceras Especiales) */
/* (añade aquí tu CSS de búsqueda si lo necesitas) */

/* 6) CLS – Mejora de carga de imágenes en cabeceras */
.rituales-header img,
.diccionario-header img,
.blog-header img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4;
}

/* 7) TARJETAS DE SUBCATEGORÍAS */
.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px;
}
.category-box {
  background-color: #f3e5f5;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 100%;
  max-width: 300px;
}
.category-box:hover {
  transform: translateY(-10px);
}
.category-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.category-box h3 {
  font-size: 20px;
  color: #185DC5;
  margin: 10px 0;
}
.category-box p {
  font-size: 16px;
  color: #333;
}
.read-more-button {
  display: inline-block;
  margin-top: 10px;
  background-color: #ffd700;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  border: 1px solid black;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.read-more-button:hover {
  background-color: #6AE1CE;
  color: white;
}
@media (max-width: 768px) {
  .categories-container { flex-direction: column; align-items: center; }
  .category-box { width: 100%; }
}

/* 8) FOOTER */
footer {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
  background-color: #185DC5;
  color: white;
}
footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: gold;
  text-decoration: underline;
}

/* 9) TAROTISTAS ONLINE */
#equipo-banner-tarotistas {
  background-color: #346AE6;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}
#equipo-banner-tarotistas h2 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}
#banner-subline-tarot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
#hora-local-tarot { font-size: 16px; }
#center-banner { display: flex; align-items: center; gap: 6px; }
.tarotistas-count { color: #fff; font-size: 20px; font-weight: bold; }
.txt-en-linea { color: #fff; font-size: 16px; margin-left: 5px; }
.phone-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.etiqueta-internacional,
.etiqueta-espana,
.etiqueta-usa {
  font-size: 14px;
  margin-top: 4px;
  color: #333;
}
.category-box.disponible,
.tarotista-card.disponible { border: 2px solid green; }
.category-box.ocupada,
.tarotista-card.ocupada { border: 2px solid red; }
.category-box.no-disponible,
.tarotista-card.no-disponible { border: 2px solid gray; }
.category-box.disponible .estado-text,
.tarotista-card.disponible .tarotista-estado { color: green; }
.category-box.ocupada .estado-text,
.tarotista-card.ocupada .tarotista-estado { color: red; }
.category-box.no-disponible .estado-text,
.tarotista-card.no-disponible .tarotista-estado { color: gray; }
.texto-legal {
  text-align: center;
  margin: 20px auto;
  max-width: 800px;
  font-size: 14px;
  color: #333;
}
.texto-legal p { margin: 0; }

/* 10) CONTENIDO CATEGORY-TAROTISTAS */
.tarotistas-category-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.titulo-categoria {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}
.texto-intro-categoria {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tarotista-card {
  display: flex;
  background-color: #fdfdfd;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 2px solid transparent;
}
.tarotista-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
  display: block;
}
.tarotista-content {
  padding: 20px;
  flex: 1;
}
.tarotista-nombre {
  font-size: 22px;
  margin-bottom: 10px;
  color: #185DC5;
}
.tarotista-estado {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.tarotista-descripcion p {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.text-disponible { color: #4caf50; }
.text-ocupada { color: #f44336; }
.text-no-disponible { color: #9e9e9e; }
.tarotista-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.phone-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
  flex: 1;
  min-width: 150px;
}
.etiqueta-llamada {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 5px;
  text-align: center;
}
.leyenda-estados-categoria {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.leyenda-estados-categoria h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.estado-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.color-indicador {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #ccc;
}
.color-indicador.disponible { background-color: #4caf50; }
.color-indicador.ocupada   { background-color: #f44336; }
.color-indicador.no-disponible { background-color: #9e9e9e; }
@media (max-width: 768px) {
  .tarotista-card { flex-direction: column; }
  .tarotista-image img { width: 100%; }
  .tarotista-content { padding: 15px; }
  .tarotista-phones { flex-direction: column; }
  .phone-button-group {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* 11) ESTILOS DE CONTENIDO GENERAL */
.opiniones-tarot ul.social-links,
.opiniones-tarot ul.services-list {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.opiniones-tarot ul.social-links li,
.opiniones-tarot ul.services-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.content-category h1,
.content-category h2,
.content-category h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.content-category p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.content-category ul {
  margin: 15px 0;
  padding-left: 20px;
}
.content-category ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.content-category p a {
  margin-top: 10px;
  display: inline-block;
}
.content-category h2 + h3 {
  margin-top: 20px;
}
.decorated-list {
  list-style-type: disc;
  margin: 15px 0;
  padding-left: 30px;
}
.decorated-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* 12) Footer personalizado Ruth Montenegro */
.site-footer {
  background-color: #1e4db7;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px 20px 20px;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.footer-subscription {
  max-width: 800px;
  margin: 0 auto 30px;
}
.footer-subscription p { margin: 0 0 10px; font-size: 1rem; line-height: 1.4; }
.footer-subscription .button.button-primary { margin-top: 10px; }
.footer-services { margin-bottom: 30px; }
.footer-services h4 { font-size: 1.2rem; margin-bottom: 15px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #ffd700; }
.footer-legal-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-legal-menu { display: flex; gap: 15px; }
.footer-legal-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-legal-menu a:hover { color: #ffd700; }
.footer-company-data img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #fff;
  border-radius: 4px;
}
.footer-bottom {
  font-size: 0.85rem;
  color: #ddd;
  border-top: 1px solid #334d99;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .footer-subscription { text-align: center; }
  .footer-legal-wrapper { justify-content: center; padding: 0 20px; }
  .footer-company-data img { max-width: 350px; }
}
@media (max-width: 480px) {
  .footer-links { flex-direction: column; gap: 8px; }
  .footer-legal-wrapper { flex-direction: column; gap: 15px; }
}

/* 13) Cuadrícula signos */
.horoscope-monthly-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
  margin: 30px 0;
}
.horoscope-monthly-grid .horoscope-sign img {
  display: block;
  max-width: 100%;
  height: auto;
}
.horoscope-monthly-grid .horoscope-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.horoscope-monthly-grid .horoscope-sign span {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .horoscope-monthly-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .horoscope-monthly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .horoscope-monthly-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .horoscope-monthly-grid .horoscope-sign img {
    width: 250px !important;
    height: auto !important;
  }
}

/* 14) Migas de Yoast */
.breadcrumbs {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.8em 1em;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  max-width: 1170px;
  margin: 0 auto 20px;
  padding: 0 15px;
  font-size: 0.9em;
}
.breadcrumbs a {
  color: #333333;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.6em 0.8em;
    font-size: 0.85rem;
  }
}

/* 15) Espaciado cover → H1 general */
.nv-content-wrap > .wp-block-cover.alignfull + * .wp-block-heading:first-of-type {
  margin-block-start: clamp(2.5rem, 6vw, 4rem) !important;
}
@media (max-width: 1024px) {
  .nv-content-wrap > .wp-block-cover.alignfull + * .wp-block-heading:first-of-type {
    margin-block-start: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .nv-content-wrap > .wp-block-cover.alignfull + * .wp-block-heading:first-of-type {
    margin-block-start: 2rem !important;
  }
}

/* 16) Fallback image-set para cover */
.wp-block-cover.alignfull .wp-block-cover__image-background {
  background-image: image-set(
    url('/wp-content/uploads/2025/04/rasgos-signos-zodiacales-templo-cosmico-ruth-montenegro-800x533.webp') type('image/webp'),
    url('/wp-content/uploads/2025/04/rasgos-signos-zodiacales-templo-cosmico-ruth-montenegro-800x533.png') type('image/png')
  ) !important;
}

/* 17) Footer search */
.footer-search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.footer-search form {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer-search input[type="search"] {
  padding: 10px 15px;
  width: 280px;
  border-radius: 25px 0 0 25px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}
.footer-search input[type="submit"] {
  padding: 10px 18px;
  background-color: #ffd700;
  border: 1px solid #ccc;
  border-radius: 0 25px 25px 0;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  margin-left: -1px;
}
.footer-search input[type="submit"]:hover {
  background-color: #6AE1CE;
}
/* incrustar y centrar alta-newsletter-ruth-montenegro */
.sp-form-wrapper {
  max-width: 500px;     /* ancho máximo del formulario */
  margin: 0 auto;       /* lo centra horizontalmente */
  padding: 20px;        /* espaciado interior (opcional) */
  box-sizing: border-box;
}

/* Si necesitas centrar sólo el iframe dentro */
.sp-form-wrapper iframe {
  display: block;
  margin: 0 auto;
}

/*  Web Stories se muestren en filas de 3 en escritorio y 1 por fila en móvil */
.web-stories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.web-story-item {
  width: 30%; /* Tres columnas en escritorio */
}

.web-story-item img {
  width: 100%;
  height: auto;
}

.web-story-item h3 {
  font-size: 15px;
  line-height: 1.3;
  margin: 6px 0;
  text-align: center;
  font-weight: normal;
}

@media (max-width: 768px) {
  .web-story-item {
    width: 100%; /* Una columna en móvil */
  }
}
/*  Centrar bloque de comentarios */
.comments-area,
.comment-list,
.comment-respond {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}
/* ==========================================================================
   ESTILOS PARA LA PÁGINA DE PROMOCIONES DEL GABINETE
   ========================================================================== */

.promociones-wrapper {
    margin: 40px auto;
}

.promo-section-title {
    text-align: center;
    font-size: 28px;
    color: #185DC5;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-card {
    background-color: #f3e5f5; /* Reutilizamos el color de .category-box */
    border: 1px solid #e0cde4;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative; /* Para la etiqueta "popular" */
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.promo-card h3 {
    font-size: 22px;
    color: #185DC5; /* Reutilizamos color */
    margin-top: 0;
    margin-bottom: 10px;
}

.promo-price {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.promo-per-minute {
    font-size: 16px;
    color: #555;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.promo-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    flex-grow: 1; /* Empuja el botón hacia abajo */
    margin-bottom: 20px;
}

/* Etiqueta para la oferta más popular */
.promo-card.popular {
    border: 2px solid #185DC5;
}

.promo-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #185DC5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Sección "Cómo Funciona" */
.how-it-works {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

.how-it-works h2 {
    margin-bottom: 30px;
    color: #185DC5;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #ffd700;
    color: black;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
  
/* ————————————————————————————————
   BLOQUE A PARA PROBAR (DESCOMENTAR SI SE NECESITA)
   ————————————————————————————————
   
   /* Espacio cover → primer H1 */
/*
.nv-content-wrap > .wp-block-cover.alignfull + * 
  .wp-block-heading:first-of-type {
  margin-block-start: clamp(2.5rem, 6vw, 4rem) !important;
}
/* Espacio migas → título */
/*
.breadcrumbs + .neve-main h1,
.breadcrumbs + .neve-main .entry-title {
  margin-top: 2em !important;
}
*/
/* Centrar el vídeo de plugin youtube*/
.rm-yt-wrap {
  max-width: 720px;
  margin: 12px auto;
}

.rm-yt-wrap .rm-yt-facade,
.rm-yt-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 10px;
}

.rm-yt-wrap .rm-yt-facade {
  position: relative;
  cursor: pointer;
  line-height: 0; /* evita huecos de inline-images */
  overflow: hidden;
}

.rm-yt-wrap .rm-yt-facade img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Botón play centrado matemáticamente */
.rm-yt-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* no bloquea el click */
  width: auto;
  height: auto;
}
/* Bloque enlaces horóscopos mensuales */
.horoscope-monthly-links {
  margin-top: 30px;
  text-align: center;
}

.horoscope-monthly-links h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.horoscope-monthly-links nav p {
  font-size: 15px;
  line-height: 1.6;
  display: inline;         
  margin: 0 2px;
}

.horoscope-monthly-links nav br {
  display: none;          
}

.horoscope-monthly-links a {
  color: #185DC5;
  text-decoration: none;
  font-weight: 500;
}

.horoscope-monthly-links a:hover {
  text-decoration: underline;
  color: #FFD700;
}
/* ================================
   FIX DEFINITIVO — MENU NEVE EN UNA LÍNEA
   ================================ */

/* El contenedor del menú en desktop debe estar en una sola línea */
.primary-menu-ul.nav-ul.menu-desktop {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    overflow: visible !important;
    white-space: nowrap !important;
}

/* Asegurar que los <li> no rompan línea */
.primary-menu-ul.nav-ul.menu-desktop > li {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Asegurar que los <a> no generen saltos de línea */
.primary-menu-ul.nav-ul.menu-desktop > li > a {
    white-space: nowrap !important;
    overflow: visible !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Quitar cualquier overflow que cause scrollbars verticales u horizontales */
header,
.nv-header,
.nv-header-content,
#header-grid {
    overflow: visible !important;
}

/* La cabecera NUNCA debe tener scrollbars */
header,
.nv-header {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

/* Evitar que el logo genere overflow */
.site-logo,
.nv-title-tagline,
.nv-site-title-wrap,
.nv-site-title-wrap h1 {
    overflow: hidden !important;
    white-space: nowrap !important;
    display: block !important;
}
/* === FIX REAL PARA MENÚ DESPLEGABLE ESCRITORIO (NEVE) === */
@media (min-width: 960px) {

    /* Restaurar overflow natural del header */
    header,
    .nv-header,
    .header--row-inner,
    #header-grid,
    .nv-nav-wrap {
        overflow: visible !important;
        max-height: none !important;
        white-space: normal !important;
    }

    /* Restaurar comportamiento normal del logo y título */
    .site-logo,
    .nv-site-title,
    .nv-site-title-wrap {
        overflow: visible !important;
        white-space: normal !important;
        display: block !important;
    }

}
/* === FIX VISUAL SUBMENÚ NEVE 2025 (Ruth Montenegro) === */

@media (min-width: 960px) {

    /* Permitir que el submenú ajuste el tamaño al contenido */
    .primary-menu-ul.menu-desktop li.menu-item-has-children > .sub-menu {
        width: auto !important;
        min-width: 220px !important; /* base estable */
        white-space: normal !important; /* permite saltos de línea */
    }

    /* Asegurar que el fondo cubra todo el enlace */
    .primary-menu-ul.menu-desktop .sub-menu .wrap,
    .primary-menu-ul.menu-desktop .sub-menu a {
        display: block !important;
        width: 100% !important;
        background: #2b4ea2; /* mismo azul de Neve */
        padding: 10px 15px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }

    /* Evitar que el tooltip/hover se salga */
    .primary-menu-ul.menu-desktop .sub-menu a span,
    .primary-menu-ul.menu-desktop .sub-menu a {
        overflow-wrap: break-word !important;
    }

}
/* === MEJORA VISUAL SUBMENÚ ESCRITORIO (NEVE) === */
@media (min-width: 960px) {

    /* Evitar saltos de línea en texto del submenú */
    .primary-menu-ul.menu-desktop .sub-menu a,
    .primary-menu-ul.menu-desktop .sub-menu .wrap {
        white-space: nowrap !important; /* una sola línea */
        overflow: hidden !important;    /* evitar desbordes */
        text-overflow: ellipsis !important; /* agrega "..." si es MUY largo */
    }

    /* Ancho uniforme y consistente para todos los dropdowns */
    .primary-menu-ul.menu-desktop li.menu-item-has-children > .sub-menu {
        width: 260px !important;  /* Ajusta a tu gusto: 240–280 recomendado */
        min-width: 260px !important;
        max-width: 260px !important;
    }

    /* Items más compactos y profesionales */
    .primary-menu-ul.menu-desktop .sub-menu a {
        padding: 8px 14px !important;  /* antes eran 10px–15px */
        line-height: 1.2 !important;
    }

    /* Eliminar espacios exagerados entre elementos */
    .primary-menu-ul.menu-desktop .sub-menu li {
        margin: 0 !important;
    }

}
/* === SOLUCIÓN GLOBAL RUTH MONTENEGRO: eliminar espacio entre header y contenido === */

body:not(.home) .site-content,
body:not(.home) .nv-content-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Forzar que el primer bloque comience pegado al header */
body .entry-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* === FIX FORMULARIO DE COMENTARIOS MOVIL – RUTH MONTENEGRO === */

@media (max-width: 767px) {

    /* Evitar que el formulario herede nowrap de otros contenedores */
    .comment-form,
    .comment-form p,
    .comment-form input,
    .comment-form textarea {
        white-space: normal !important;
    }

    /* Asegurar que los campos no se desbordan */
    .comment-form input,
    .comment-form textarea {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Evitar que el contenedor genere overflow horizontal */
    .comment-form,
    #comments,
    .comments-area {
        overflow-x: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* === FOOTER PREMIUM RUTH MONTENEGRO (2025) === */

.rm-footer {
    background: #1548b5; /* azul corporativo */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #f0b71c; /* dorado elegante */
}

/* Buscador */
.rm-footer-search {
    max-width: 400px;
    margin: 0 auto 30px;
}

/* CTA */
.rm-footer-cta {
    margin-bottom: 40px;
}
.rm-footer-text {
    font-size: 15px;
    margin-bottom: 15px;
}
.rm-footer-btn {
    background: #f0c419;
    color: #0d1b4d;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s ease;
}
.rm-footer-btn:hover {
    background: #ffd648;
}

/* Secciones */
.rm-footer-section h4 {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
}

.rm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.rm-footer-links li {
    margin: 8px 0;
}
.rm-footer-links a {
    color: #ffffff;
    text-decoration: none;
}
.rm-footer-links a:hover {
    color: #ffd648;
}

/* Legal */
.rm-footer-legal-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.rm-footer-legal-links li {
    margin: 6px 0;
}
.rm-footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
}
.rm-footer-legal-links a:hover {
    color: #ffd648;
}

.rm-footer-img img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
}

/* Bottom */
.rm-footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .rm-footer {
        padding: 30px 15px;
    }
    .rm-footer-btn {
        width: 100%;
        max-width: 270px;
        margin: auto;
    }
}
/* ============================================
   FIX DEFINITIVO MÓVIL – BOTÓN FOOTER SIEMPRE NEGRO
   ============================================ */
@media (max-width: 767px) {

    /* 1. Fuerza el color ignorando variables de Neve */
    footer .rm-footer-btn {
        color: #000 !important;
        --nv-button-text-color: #000 !important;
        --nv-text-color: #000 !important;
        --nv-primary-accent: #000 !important;
    }

    /* 2. Neve aplica color en :hover, :visited y :active → anulamos todo */
    footer .rm-footer-btn:visited,
    footer .rm-footer-btn:active,
    footer .rm-footer-btn:hover {
        color: #000 !important;
        background-color: #f2c420 !important;
        border-color: #e5b000 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    /* 3. Neve aplica color a .button y .button-primary directamente */
    footer .button.button-primary,
    footer .button.button-primary:visited,
    footer .button.button-primary:active,
    footer .button.button-primary:hover {
        color: #000 !important;
    }

    /* 4. Algunos móviles usan forced-colors → garantizamos override */
    @supports (color: color(display-p3 1 1 1)) {
        footer .rm-footer-btn {
            color: #000 !important;
        }
    }
}
/* Texto legal pequeño en el footer */
.rm-footer-legal-text p {
    font-size: 0.8rem !important;
    line-height: 1.4em;
    margin: 6px 0;
    text-align: center;
    color: #ffffff;
}

/* Asegurar que el bloque no haga padding extra */
.rm-footer-legal-text {
    max-width: 900px;
    margin: 0 auto;
}
/* FIX: eliminar padding/margen superior del bloque COVER en móvil */
@media (max-width: 767px) {
    
    /* Bloque cover que aparece justo debajo del header */
    .wp-block-cover {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .wp-block-cover__inner-container {
        padding-top: 0 !important;
    }

    /* Quita el pseudo-elemento que empuja la imagen hacia abajo */
    .wp-block-cover.has-background-dim:before {
        top: 0 !important;
        height: 100% !important;
    }

    /* Asegura que la imagen del cover no deje márgenes “de seguridad” */
    .wp-block-cover img {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* ===========================================
   HEADER PERSONALIZADO — AJUSTE PROFESIONAL
   =========================================== */

/* BLOQUE GENERAL */
header.rituales-header {
    position: relative !important;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* Imagen siempre correcta */
header.rituales-header img {
    width: 100%;
    height: auto;
    display: block;
}

/* OVERLAY Y H1 EN ESCRITORIO */
header.rituales-header h1 {
    position: absolute;
    top: 50%;                  /* CENTRADO VERTICAL REAL */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    background: rgba(0, 0, 0, 0.45);
    padding: 20px 40px;        /* AJUSTADO — antes era demasiado grande */
    border-radius: 12px;

    color: #fff;
    font-size: 36px;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    width: auto;
    max-width: 80%;
}

/* ===========================================
   AJUSTES RESPONSIVE PARA MÓVIL
   =========================================== */

@media (max-width: 768px) {
    header.rituales-header {
        height: auto !important;
    }

    header.rituales-header h1 {
        font-size: 24px !important;       /* tamaño perfecto móvil */
        padding: 12px 22px !important;    /* elimina espacio excesivo */
        border-radius: 10px;

        top: 55% !important;              /* baja un poco para no tapar cartas */
        transform: translate(-50%, -50%);
        max-width: 90%;
    }
}
/* ===========================================
   AJUSTE EXCLUSIVO PARA MÓVIL — MÁRGENES LATERALES
   =========================================== */
@media (max-width: 768px) {
    header.rituales-header h1 {
        width: 100% !important;          /* el overlay ocupa todo el ancho */
        max-width: 100% !important;      /* sin límites */
        padding-left: 12px !important;   /* margen interno izquierdo */
        padding-right: 12px !important;  /* margen interno derecho */
        box-sizing: border-box !important;
    }
}
/* ⚡ FIX CTA GLOBAL – Forzar estilos en páginas y entradas */
#contacta-ruth .tarotista-phones {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 20px auto !important;
}

#contacta-ruth .phone-button-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background-color: #f9f9f9 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    min-width: 180px !important;
}

#contacta-ruth a.button,
#contacta-ruth .button {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    width: 100% !important;
    text-align: center !important;
}
/* ===========================================================
   ⭐ ESTILOS PREMIUM – TARJETAS UNIVERSALES RUTH MONTENEGRO
   Usables en páginas, entradas, Elementor, Gutenberg, PHP
=========================================================== */

.rm-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.rm-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}

.rm-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.rm-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: rmFadeUp .7s ease forwards;
}

.rm-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.rm-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.rm-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1A2D77;
  margin-bottom: 12px;
  line-height: 1.3;
}

.rm-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 20px;
}

.rm-btn {
  background: #ffd903;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  pointer-events: none;
}

/* Animación */
@keyframes rmFadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Delays progresivos */
.rm-card:nth-child(1){animation-delay:.1s;}
.rm-card:nth-child(2){animation-delay:.2s;}
.rm-card:nth-child(3){animation-delay:.3s;}
.rm-card:nth-child(4){animation-delay:.4s;}
.rm-card:nth-child(5){animation-delay:.5s;}
.rm-card:nth-child(6){animation-delay:.6s;}
.rm-card:nth-child(7){animation-delay:.7s;}
.rm-card:nth-child(8){animation-delay:.8s;}
.rm-card:nth-child(9){animation-delay:.9s;}
.rm-card:nth-child(10){animation-delay:1s;}
/* RM — Full width */
.rm-fullwidth {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* RM — Grid responsive mejorado */
.rm-grid-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding: 20px 10px;
}

/* Breakpoints */
@media (max-width: 1280px) {
  .rm-grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .rm-grid-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rm-grid-responsive {
    grid-template-columns: 1fr;
  }
}
/* ===========================================================
   🔮 ESTILOS GLOBAL TARJETAS BIZUM – RUTH MONTENEGRO (2025)
   Responsive 3 → 2 → 1 columnas
============================================================== */

/* GRID GENERAL */
.rm-bizum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .rm-bizum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .rm-bizum-grid {
    grid-template-columns: 1fr;
  }
}

/* TARJETA */
.rm-bizum-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 26px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: transform .3s ease, box-shadow .3s ease;
}

.rm-bizum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}

/* IMAGEN REDONDA */
.rm-bizum-card img {
  width: 145px;
  height: 145px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 3px solid #ffd903;
}

/* TITULO */
.rm-bizum-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1A2D77;
  margin-bottom: 10px;
}

/* TEXTO */
.rm-bizum-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.45;
  min-height: 80px;
}

/* BOTÓN */
.rm-bizum-button {
  margin-top: 12px;
  display: inline-block;
  padding: 10px 22px;
  background: #ffd903;
  color: #000;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* ===========================================================
   📱 IMÁGENES DE BIZUM — CARRUSEL O BLOQUE
============================================================== */

.rm-bizum-block {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.rm-bizum-block img {
  width: 220px;
  max-width: 45%;
  border-radius: 18px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.1);
}

.rm-bizum-block p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
}

@media (max-width: 700px) {
  .rm-bizum-block {
    flex-direction: column;
    text-align: center;
  }
  .rm-bizum-block img {
    max-width: 60%;
  }
}
.rm-whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin: 40px 0;
}

.rm-whatsapp-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.10);
  border: 1px solid #eee;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.rm-whatsapp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.rm-whatsapp-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #082567;
  margin-bottom: 10px;
}

.rm-whatsapp-card .precio {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 22px;
}

.rm-whatsapp-btn {
  background: #ffd903;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #c9a400;
}

.rm-whatsapp-btn:hover {
  background: #ffcc00;
}

@media (max-width: 1024px) {
  .rm-whatsapp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rm-whatsapp-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   📞 ESTILOS UNIVERSALES PARA BLOQUES DE NÚMEROS DE TELÉFONO
   Ruth Montenegro – 2025
   ========================================================== */

.rm-phone-block {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin: 40px auto;
    max-width: 1100px;
    text-align: center;
}

.rm-phone-item {
    flex: 1 1 320px;
}

.rm-phone-label {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 6px;
    color: #333;
}

/* Botones */
.rm-phone-btn {
    display: block;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    margin-bottom: 10px;
}

/* Amarillo (España + internacional) */
.rm-phone-btn-yellow {
    background: #ffd900;
    color: #000;
}

/* Azul-verdoso (USA) */
.rm-phone-btn-blue {
    background: #6AE1CE;
    color: #000;   /* ← CORRECTO — aquí estaba el error */
}
/* =======================================
   BOTÓN 806 – MISMO TAMAÑO QUE EL 911
======================================== */

.rm-btn-806 {
    max-width: 420px;    /* mismo ancho que el 911 */
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Ajuste visual del bloque en PC */
.rm-phone-block .rm-phone-item {
    max-width: 500px;    /* evita que el área del 806 sea gigante */
    margin: 0 auto;
}
/* FIX: Listas del CTA Final – evitar centrado y viñetas sueltas */
.cta-final ul.decorated-list {
    list-style: none !important;
    margin: 20px auto 30px !important;
    padding: 0 !important;
    max-width: 420px; /* igual que en otras landings */
    text-align: left !important;
}

.cta-final ul.decorated-list li {
    margin-bottom: 12px !important;
}

.cta-final ul.decorated-list li a {
    display: block;
    font-weight: 600;
    color: #185DC5;
}

.cta-final ul.decorated-list li a:hover {
    color: #FFD700;
}
/* ================================
   AJUSTES TAROT SÍ O NO (HEADER + TEXTO)
   ================================ */

/* Fondo + separación superior para que no se meta bajo el menú */
.main-container.rm-tarot-sino-page {
  /* mantenemos tu fondo actual */
  background: radial-gradient(circle at top, #1b5DC5 0, #34A6E0 40%, #0B0613 100%);
  padding: 110px 15px 80px; /* ↑ margen superior generoso */
}

/* En pantallas grandes podemos reducir un poco el padding top */
@media (min-width: 1024px) {
  .main-container.rm-tarot-sino-page {
    padding-top: 80px;
  }
}

/* Texto de introducción: color oscuro para que destaque */
.rm-tarot-sino-page #rm-tarot-sino-1 .rm-tarot-intro {
  color: #0D1440 !important; /* azul oscuro corporativo */
}
/* ===========================================
   FIX CRÍTICO – Mostrar resultado en móviles
   =========================================== */

/* Forzar que el resultado se vea SIEMPRE */
.rm-tarot-sino-result {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important; /* se activará con la clase, pero garantizamos */
}

/* Forzar visibilidad específica cuando se active la clase */
.rm-tarot-sino-result--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  display: block !important;
  visibility: visible !important;
}

/* En móvil algunos navegadores recortan el contenedor — corregimos */
@media (max-width: 767px) {
  .rm-tarot-sino-page,
  #rm-tarot-sino-1,
  body,
  html {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}
.rm-post-tirada {
  display: flex;
  justify-content: center;
  margin: 60px auto 80px auto;
  padding: 0 20px;
}

.rm-post-tirada-inner {
  max-width: 820px;
  background: #0D1440;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 2px solid #e7c55a;
  color: #fff;
}

.rm-post-tirada-inner h2 {
  color: #ffd45c;
  margin-bottom: 18px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rm-post-tirada-inner p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.rm-post-tirada-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffd45c;
  color: #0D1440;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.rm-post-tirada-btn:hover {
  background: #fff1b3;
  transform: translateY(-2px);
}
/* Mejora de legibilidad del bloque introductorio */
.rm-pre-intro p {
    line-height: 1.7 !important;   /* Más espacio entre líneas */
    margin-bottom: 18px !important; /* Separación entre párrafos */
}
.rm-pre-intro h2 {
    margin-bottom: 25px !important; /* Resalta el título */
}
/* ===============================
   GDPR COOKIE – FIJAR TEXTO BLANCO EN BOTONES AZULES (LAYOUT MODERNO)
   =============================== */

/* Botón azul primario (Aceptar / Activar todo / Guardar cambios) */
.moove-gdpr-button-allow-all,
.moove-gdpr-button-save-settings,
.moove-gdpr-button-accept,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-accept,
.moove-gdpr-button-allow-all:hover,
.moove-gdpr-button-save-settings:hover,
.moove-gdpr-button-accept:hover {
    color: #fff !important;
}

/* Botones secundarios (Rechazar / Ajustes en blanco) */
.moove-gdpr-button-reject,
.moove-gdpr-button-settings {
    color: #222 !important;
}

/* Forzar texto blanco en cualquier botón con fondo azul */
.moove-gdpr-button {
    color: #fff !important;
}

/* Algunas instalaciones usan estos IDs */
button#gdc-accept,
button#gdc-save,
button#gdc-allow {
    color: #fff !important;
}

/* Botón azul dentro del modal (parte inferior) */
.moove-gdpr-cookie-advanced-save-btn {
    color: #fff !important;
}

/* ===============================
   BLOQUE PREMIUM PARA EL H2
   Tarot Sí o No – FIX DEFINITIVO
   =============================== */

.rm-tarot-intro-card .rm-h2-block {
    background: rgba(13, 20, 64, 0.65); /* azul profundo semi-transparente */
    border: 2px solid #e7c55a; /* dorado suave */
    border-radius: 18px;
    padding: 22px 20px 18px 20px; /* aire real arriba y abajo */
    margin-bottom: 28px; /* separación con el texto */
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    text-align: center;

    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.rm-tarot-intro-card .rm-h2-block h2 {
    color: #ffd970 !important;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0 !important;
    letter-spacing: 1px;
}

/* Ajuste móvil */
@media (max-width: 480px) {
    .rm-tarot-intro-card .rm-h2-block {
        padding: 18px 16px 14px 16px;
        max-width: 92%;
    }
    .rm-tarot-intro-card .rm-h2-block h2 {
        font-size: 22px;
        line-height: 1.32;
    }
}
/* ===== FIX VISIBILIDAD GDPR COOKIE COMPLIANCE ===== */
#moove_gdpr_cookie_info_bar *,
#moove_gdpr_cookie_modal *,
.moove_gdpr_cookie_modal_wrapper *,
.moove_gdpr_cookie_settings_container * {
    color: #222 !important;
}

#moove_gdpr_cookie_modal .gdpr_heading,
#moove_gdpr_cookie_settings_container .gdpr_heading {
    color: #111 !important;
    font-weight: 600;
}

/* Evitar que Neve o Child Theme sobreescriban colores */
.moove_gdpr_cookie_modal_wrapper p,
.moove_gdpr_cookie_settings_container p {
    color: #333 !important;
}

.moove_gdpr_cookie_settings_container label {
    color: #333 !important;
}

/* Botones */
.moove-gdpr-modal-close svg path {
    fill: #111 !important;
}
/* =====================================================
   FIX DEFINITIVO VIDEO YOUTUBE Plugins (rm-yt)
   Evita colapso del iframe tras click
===================================================== */

/* Contenedor principal */
.rm-video-lite {
  width: 100% !important;
  max-width: 480px !important;   /* ancho realista para Shorts */
  margin: 2rem auto !important;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9 / 16 !important;
}

/* Wrapper del iframe */
.rm-video-iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
}

/* Iframe de YouTube */
.rm-video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* Elimina restricciones heredadas */
.rm-video-lite *,
.rm-video-lite iframe {
  max-width: none !important;
}

/* Desktop grande: no estirar demasiado */
@media (min-width: 1024px) {
  .rm-video-lite {
    max-width: 420px !important;
  }
}
/* =====================================================
  PORTADA VIDEO YOUTUBE Plugins (rm-yt)
   Evita colapso del iframe tras click
===================================================== */
.rm-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.rm-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rm-video-play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.rm-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
}

.rm-video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}
/* ==========================================================
   🎁 PROMO PRIMERA LLAMADA – TARJETA DESTACADA en promociones
========================================================== */

.rm-promo-first-call {
  margin: 50px auto;
}

.rm-promo-card {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  border: 1px solid #eee;
}

.rm-promo-badge {
  display: inline-block;
  background: #ffd900;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rm-promo-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.10;        /* respira mejor en varias líneas */
  color: #082567;
  margin-bottom: 15px;
}
/* ===============================
   PROMO NUEVOS CLIENTES – AJUSTE DESKTOP
   =============================== */
@media (min-width: 1024px) {
    .rm-promo-title {
        letter-spacing: 0.09em;   /* separa letras */
        word-spacing: 0.15em;     /* separa palabras */
        line-height: 1.00;        /* respira mejor en varias líneas */
    }
}

.rm-promo-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.rm-promo-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 18px;
}

.rm-promo-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}
/* ======================================
   RM CTA TOP (WP_BODY_OPEN) — SOLO MÓVIL
   SIN STICKY · encima del header Neve
   (Selector correcto: #rm-sticky-call)
====================================== */

/* Ocultar en tablet/desktop */
@media (min-width: 768px){
  #rm-sticky-call{ display:none !important; }
}

/* Móvil */
@media (max-width: 767px){

  #rm-sticky-call{
    width: 100%;
    background: linear-gradient(180deg, #1f5fbf 0%, #1b4fa0 100%);
    padding: 16px 14px 18px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 3px solid rgba(245,196,0,0.75);
  }

  /* Botón */
  #rm-sticky-call .rm-sticky-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f5c400;
    color: #0b2e6f !important;
    font-weight: 800;
    font-size: 18px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none !important;
    border: 2px solid rgba(0,0,0,0.18);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  /* Evitar que al tocar cambie el color y “desaparezca” */
  #rm-sticky-call .rm-sticky-btn:visited,
  #rm-sticky-call .rm-sticky-btn:hover,
  #rm-sticky-call .rm-sticky-btn:active,
  #rm-sticky-call .rm-sticky-btn:focus{
    color: #0b2e6f !important;
    opacity: 1 !important;
  }

  /* Microcopy en 1 línea */
  #rm-sticky-call .rm-sticky-sub{
    margin-top: 10px;
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.95;
  }

  /* Aviso legal */
  #rm-sticky-call details.rm-sticky-legal{
    margin-top: 12px;
    color: #ffffff;
    font-size: 14px;
  }

  #rm-sticky-call details.rm-sticky-legal summary{
    cursor: pointer;
    font-weight: 700;
    list-style: none;
  }

  #rm-sticky-call details.rm-sticky-legal summary::marker{
    display: none;
  }

  #rm-sticky-call .rm-legal-body{
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.95;
  }

  /* Promo destacada dentro del desplegable */
  #rm-sticky-call .rm-legal-promo{
    display: inline-block;
    margin-bottom: 8px;
    background: #f5c400;
    color: #0b2e6f;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 8px;
  }

  #rm-sticky-call .rm-legal-promo span{
    opacity: 0.95;
    font-weight: 600;
    margin-left: 6px;
  }

  /* Badge "Promo" del summary */
  #rm-sticky-call .rm-promo-badge{
    display: inline-block;
    margin-left: 10px;
    background: #f5c400;
    color: #0b2e6f;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 13px;
    vertical-align: middle;
  }

}
