/* =========================================================
   RESET Y BASE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
    max-width: 100%;
    background: #faf8f5;
    color: #2c2c2c;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.8;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin: 36px 0 18px 0;
    padding: 0;
}

h1 {
    font-size: 26px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 32px 0;
    padding: 0 0 24px 0;
    border-bottom: 2px solid #d4af37;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3d2b1a;
    text-align: center;
    background: #f5efe7;
    padding: 16px 0 12px 0;
    margin: 44px 0 20px 0;
    letter-spacing: 0.08em;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

h3 {
    font-size: 17px;
    font-weight: 700;
    color: #3d2b1a;
    text-align: left;
    border-left: 4px solid #d4af37;
    padding-left: 16px;
    margin: 32px 0 14px 0;
}

h4, h5, h6 {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1a;
    text-align: left;
    margin: 24px 0 12px 0;
}

p {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
}

/* =========================================================
   ENLACES
   ========================================================= */
a {
    color: #8b5e3c;
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 94, 60, 0.3);
    transition: all 0.2s ease;
}

a:hover {
    color: #5a3a20;
    border-bottom-color: #5a3a20;
}

/* =========================================================
   LISTAS
   ========================================================= */
ul, ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

ul li, ol li {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 4px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* =========================================================
   BOTONES
   ========================================================= */
.laura-cta-button,
a.laura-cta-button {
    display: block;
    width: auto;
    max-width: 320px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a0a1f !important;
    background: #d4af37;
    border: none !important;
    border-bottom: none !important;
    padding: 15px 36px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 32px auto;
    box-shadow: none;
}

.laura-cta-button:hover,
a.laura-cta-button:hover {
background: #c49b2a;
  color: #1a0a1f !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none;
}

.laura-hero-cta,
a.laura-hero-cta {
    display: block;
    width: auto;
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(135deg, #b91c3c 0%, #d92545 100%);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    border: none !important;
    border-bottom: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 32px auto;
    box-shadow: 0 4px 15px rgba(185, 28, 60, 0.4);
}

.laura-hero-cta:hover,
a.laura-hero-cta:hover {
    background: linear-gradient(135deg, #d92545 0%, #f03555 100%);
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(217, 37, 69, 0.5);
    border-bottom: none !important;
}

button,
.button,
input[type="submit"],
input[type="button"],
a.button {
    color: #ffffff !important;
    background: #1a0a1f;
    border: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.button:hover {
    background: #3d1a3d !important;
    color: #ffffff !important;
}

/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */
main {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 52px 32px 64px;
    background: #faf8f5;
}

/* =========================================================
   HEADER — NO TOCAR
   ========================================================= */
.laura-main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 10, 18, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #d4af37;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
}

.laura-header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: padding 0.3s ease;
}

.laura-main-header.compact .laura-header-main {
    padding: 0.2rem 2rem;
}

.laura-header-brand-main {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    border-bottom: none;
    transition: transform 0.2s ease;
}

.laura-header-brand-main:hover {
    transform: translateY(-1px);
    border-bottom: none;
}

.laura-header-photo-main {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.laura-main-header.compact .laura-header-photo-main {
    width: 110px;
    height: 110px;
}

.laura-header-info-main {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.laura-header-name-main {
    font-family: Georgia, ui-serif, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
    transition: font-size 0.3s ease;
}

.laura-main-header.compact .laura-header-name-main {
    font-size: 1.1rem;
}

.laura-header-credentials-main {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: font-size 0.3s ease;
}

.laura-main-header.compact .laura-header-credentials-main {
    font-size: 0.75rem;
}

.laura-header-nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.laura-header-nav-main a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.laura-header-nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.laura-header-nav-main a:hover {
    color: #ffffff;
    border-bottom: none;
}

.laura-header-nav-main a:hover::after {
    width: 100%;
}

.laura-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    position: relative;
    z-index: 1100;
    transition: all 0.3s ease;
}

.laura-menu-toggle:hover {
    background: transparent;
}

.laura-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.laura-menu-toggle span:nth-child(1) { top: 14px; }
.laura-menu-toggle span:nth-child(2) { top: 22px; }
.laura-menu-toggle span:nth-child(3) { top: 30px; }

.laura-menu-toggle.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.laura-menu-toggle.active span:nth-child(2) { opacity: 0; }
.laura-menu-toggle.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.laura-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a0a1f 0%, #0f0a12 100%);
    border-left: 2px solid #d4af37;
    padding: 6rem 0 2rem;
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
}

.laura-mobile-menu.active { right: 0; }

.laura-mobile-servicios {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid #d4af37;
    margin-bottom: 2rem;
}

.laura-mobile-servicios h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-align: left;
    border-left: 4px solid #d4af37;
    padding-left: 16px;
}

.laura-mobile-servicio-item {
   background: rgba(61, 43, 26, 0.3);
    border-left: 3px solid #d4af37;
    padding: 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.laura-mobile-servicio-item:hover {
   background: rgba(61, 43, 26, 0.5);
    transform: translateX(5px);
}

.laura-mobile-servicio-item a {
    text-decoration: none;
    display: block;
    border-bottom: none;
    color: inherit;
}

.laura-mobile-servicio-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.laura-mobile-servicio-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #d4af37;
}

.laura-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 2rem;
}

.laura-mobile-menu ul li {
    margin-bottom: 1.2rem;
    padding-left: 0;
}

.laura-mobile-menu ul li::before {
    display: none;
}

.laura-mobile-menu ul li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.laura-mobile-menu ul li a:hover {
    color: #ffffff;
    padding-left: 1rem;
    border-bottom: none;
}

.laura-mobile-whatsapp {
    margin: 2rem;
    padding: 1.2rem;
    background: #1a0a1f;
    text-align: center;
    border-radius: 4px;
    box-shadow: none;
}

.laura-mobile-whatsapp a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.laura-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
}

.laura-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   PROMO BAR
   ========================================================= */
.laura-promo-bar-main {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(185, 28, 60, 0.15) 50%, rgba(212, 175, 55, 0.08) 100%);
    border-top: 1px solid #d4af37;
    padding: 14px 32px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.laura-promo-bar-main p {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* =========================================================
   HOME - HERO
   ========================================================= */
.laura-hero-conversion {
    background: #000000;
    padding: 64px 32px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.laura-hero-container-conversion {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.laura-hero-photo-conversion {
    margin-right: 64px;
}

.laura-hero-photo-conversion img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.laura-hero-subtitle {
    font-size: 21px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.6;
}

.laura-hero-questions {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 24px;
}

.laura-hero-bar {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(185, 28, 60, 0.15) 50%, rgba(212, 175, 55, 0.08) 100%);
    border-top: 1px solid #d4af37;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.laura-hero-bar a {
    color: #d4af37;
    border-bottom: none;
}

.laura-hero-bar-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* =========================================================
   HOME - INTRO
   ========================================================= */
.laura-intro-section {
    background: linear-gradient(180deg, #f5f0eb 0%, #ede8e3 100%);
    padding: 80px 32px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.laura-intro-title {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 900;
    color: #1a0a1f;
    margin-bottom: 32px;
    text-align: center;
    background: transparent;
    padding: 0;
}

.laura-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #1a0a1f;
    margin-bottom: 0;
}
/* =========================================================
   HOME - CIERRE
   ========================================================= */
.laura-cierre-section {
    background: linear-gradient(180deg, #0f0a12 0%, #1a0a1f 100%);
    padding: 80px 32px;
    text-align: center;
    border-top: 1px solid #d4af37;
}

.laura-cierre-container {
    max-width: 600px;
    margin: 0 auto;
}

.laura-cierre-texto {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #e8dcc8;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.laura-cierre-titulo {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 32px 0;
}
/* =========================================================
   HOME - SERVICIOS
   ========================================================= */
.laura-servicios-section {
    background: linear-gradient(180deg, #0f0a12 0%, #1a0a1f 100%);
    padding: 80px 32px;
}

.laura-servicios-container {
    max-width: 1200px;
    margin: 0 auto;
}

.laura-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.laura-servicio-card {
    background: #faf8f5;
    border: 1px solid #e0d8cc;
    border-top: 4px solid #d4af37;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.laura-servicio-card:hover {
    transform: translateY(-6px);
    border-top-color: #ffd700;
    box-shadow: 0 10px 36px rgba(212, 175, 55, 0.2);
}

.laura-servicio-title {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a0a1f;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
    background: transparent;
    padding: 0;
    border: none;
    letter-spacing: 0.08em;
}

.laura-servicio-price {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #8b5e3c;
    margin-bottom: 20px;
    text-align: center;
    background: transparent;
    padding: 0;
    border: none;
    text-transform: none;
}

.laura-servicio-description {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.75;
    margin-bottom: 28px;
}
/* =========================================================
   PÁGINA SOBRE MÍ — imagen flotante con datos
   ========================================================= */
.laura-sobre-float {
    float: right;
    width: 280px;
    margin: 0 0 32px 40px;
    border-top: 2px solid #3d2b1a;
}

.laura-sobre-float img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #e0d8cc;
    margin-bottom: 0;
}

.laura-sobre-float-datos {
    border-top: none;
}

.laura-sobre-float-datos .laura-credencial-item {
    padding: 14px 0;
    border-bottom: 1px solid #e0d8cc;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.laura-sobre-float-datos .laura-credencial-item:last-child {
    width: 100%;
    border-bottom: none;
}

.laura-sobre-float-datos .laura-credencial-numero {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #3d2b1a;
    line-height: 1.3;
}

.laura-sobre-float-datos .laura-credencial-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b5e3c;
    line-height: 1.4;
}

/* Dos botones dentro de bloque-personalizada */
.bloque-personalizada .cta-final {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   FOOTER
   ========================================================= */
.laura-footer {
    background: rgba(15, 10, 18, 0.98);
    border-top: 1px solid #d4af37;
    padding: 64px 32px 32px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.laura-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.laura-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.laura-footer-column h3 {
    font-size: 17px;
    margin-bottom: 16px;
    text-align: left;
    border-left: none;
    padding-left: 0;
    color: #e8dcc8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
}
.laura-footer-column h3 a {
    color: #d4af37;
}
.laura-footer-column h3 a:hover {
     color: #e8dcc8;
}
.laura-footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.laura-footer-column ul li {
    margin-bottom: 12px;
    padding-left: 0;
    color: #ffffff;
}

.laura-footer-column ul li::before {
    display: none;
}

.laura-footer-column ul li a {
    color: #ffffff;
    border-bottom: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
}

.laura-footer-column ul li a:hover {
    color: #d4af37;
    border-bottom: none;
}

.laura-footer-divider {
    height: 1px;
    background: #d4af37;
    margin: 48px 0;
}

.laura-footer-bottom {
    text-align: center;
}

.laura-footer-bottom p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.laura-footer-social a {
    font-size: 24px;
    margin: 0 8px;
    border-bottom: none;
}

/* =========================================================
   FAQs - ACORDEÓN
   ========================================================= */
.laura-faq-section {
    background: linear-gradient(180deg, #0f0a12 0%, #1a0a1f 100%);
    padding: 80px 32px;
}

.laura-faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.laura-faq-item {
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 12px;
    background: #f0e8d8;
    transition: border-color 0.3s ease;
}

.laura-faq-item[open] {
    border-color: #d4af37;
}

.laura-faq-item summary {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 20px 52px 20px 24px;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s ease, background 0.3s ease;
}

.laura-faq-item summary::-webkit-details-marker {
    display: none;
}

.laura-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #d4af37;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.laura-faq-item[open] summary::after {
    content: '×';
    color: #ffd700;
}

.laura-faq-item[open] summary {
    color: #d4af37;
background: #1a0a1f;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.laura-faq-item summary:hover {
    background:#1a0a1f;
    color: #ffd700;
}

.laura-faq-answer {
    padding: 20px 24px 24px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    background: #f5efe7;
}

.laura-faq-answer p {
    color: #2c2c2c;
    margin-bottom: 0;
}

/* =========================================================
   CAJA DE PRECIO (landings de consulta)
   ========================================================= */
.laura-precio-box {
    background: #544740;
    border: 2px solid #d4af37;
    padding: 32px;
    margin: 44px 0;
}

.laura-precio-box .laura-precio-titulo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 8px 0;
    padding: 0;
    border: none;
    background: transparent;
    line-height: 1.4;
}

.laura-precio-box .laura-precio-importe {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
    border: none;
    background: transparent;
}

.laura-precio-box .laura-precio-detalle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 2;
    color: #c0c0c0;
    margin: 0;
}

.laura-precio-box .laura-precio-detalle strong {
    color: #ffffff;
}

/* =========================================================
   IMÁGENES RESEÑAS
   ========================================================= */
.laura-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.laura-review-item,
.laura-review-image {
    margin: 0;
}

.laura-review-item img,
.laura-review-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   TABLAS
   ========================================================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: #ffffff;
    border: 1px solid #d4c4a8;
    box-shadow: none;
}

table thead {
    background: #3d2b1a;
}

table th {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #d4af37;
}

table td {
    font-size: 15px;
    color: #2c2c2c;
    padding: 13px 16px;
    border-bottom: 1px solid #ede8e0;
}

table tbody tr:nth-child(even) {
    background: #faf8f5;
}

table tbody tr:hover {
    background: #f5efe7;
}
/* =========================================================
   VIDEOS YOUTUBE RESPONSIVE
   ========================================================= */
.laura-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 32px auto;
}

.laura-video-container:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.laura-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}
/* =========================================================
   HOME - CREDENCIAL EN HERO
   ========================================================= */
.laura-hero-credencial {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 12px;
}

/* =========================================================
   HOME - ORIENTADOR
   ========================================================= */
.laura-orientador-section {
    background: #faf8f5;
    padding: 80px 32px;
    border-bottom: 1px solid #e0d8cc;
}

.laura-orientador-container {
    max-width: 860px;
    margin: 0 auto;
}

.laura-orientador-titulo {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    color: #1a0a1f;
    text-align: center;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.laura-orientador-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 28px;
}

.laura-orientador-card {
    padding: 32px 28px;
    border: 1px solid #e0d8cc;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.laura-orientador-card--horaria {
    border-top-color: #8b4a5a;
    background: #faeef0;
}

.laura-orientador-card--tarot {
    border-top-color: #c8895a;
    background: #fdf0ea;
}

.laura-orientador-icono {
    font-size: 22px;
    margin-bottom: 14px;
    color: #3d2b1a;
}

.laura-orientador-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a0a1f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
    line-height: 1.3;
}

.laura-orientador-cuando {
    font-size: 15px;
    color: #3d2b1a;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.laura-orientador-ejemplos {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.laura-orientador-ejemplos li {
    font-size: 14px;
    color: #4a3828;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: none;
    line-height: 1.5;
    margin-bottom: 0;
}

.laura-orientador-ejemplos li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.laura-orientador-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px;
    text-decoration: none;
    border: none !important;
    text-align: center;
    transition: background 0.2s ease;
    margin-top: auto;
}

.laura-orientador-btn--horaria {
    background: #8b4a5a;
    color: #ffffff !important;
}

.laura-orientador-btn--horaria:hover {
    background: #7a3a4a;
    color: #ffffff !important;
}

.laura-orientador-btn--tarot {
    background: #c8895a;
    color: #ffffff !important;
}

.laura-orientador-btn--tarot:hover {
    background: #b87848;
    color: #ffffff !important;
}

.laura-orientador-nota {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* =========================================================
   HOME - SOBRE MÍ
   ========================================================= */
.laura-sobre-section {
    background: #f5efe7;
    padding: 80px 32px;
    border-top: 1px solid #e0d8cc;
    border-bottom: 1px solid #e0d8cc;
}

.laura-sobre-container {
    max-width: 860px;
    margin: 0 auto;
}

.laura-sobre-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

.laura-sobre-titulo {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    color: #1a0a1f;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.35;
}

.laura-sobre-texto p {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.85;
    margin-bottom: 18px;
}

.laura-sobre-enlace {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b5e3c;
    text-decoration: none;
    border-bottom: 1px solid rgba(139,94,60,0.3);
    display: inline-block;
    margin-top: 8px;
}

.laura-sobre-enlace:hover {
    color: #5a3a20;
    border-bottom-color: #5a3a20;
}

.laura-sobre-credenciales {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 2px solid #3d2b1a;
}

.laura-credencial-item {
    padding: 18px 0;
    border-bottom: 1px solid #e0d8cc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.laura-credencial-numero {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #3d2b1a;
    line-height: 1;
}

.laura-credencial-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b5e3c;
}

/* =========================================================
   HOME - RESEÑAS
   ========================================================= */
.laura-resenas-section {
    background: linear-gradient(180deg, #0f0a12 0%, #1a0a1f 100%);
    padding: 80px 32px;
}

.laura-resenas-container {
    max-width: 1100px;
    margin: 0 auto;
}

.laura-resenas-titulo {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: none;
    padding: 0;
}

.laura-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.laura-video-item {}

.laura-video-cita {
    font-size: 14px;
    color: #c0b090;
    font-style: italic;
    line-height: 1.6;
    margin: 16px 0 0;
    text-align: center;
}

/* ── Cabecera de página oscura ── */
.page-header {
    background: #0f0a12;
    padding: 56px 32px 48px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.page-header-eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: 20px;
    border: none;
    padding: 0;
    text-align: center;
    background: transparent;
}

.page-header-desc {
    font-size: 16px;
    color: #c0b090;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
    font-style: italic;
}

/* ── Cómo funciona ── */
.como-funciona {
    background: #f0ebe3;
    border-bottom: 1px solid #e0d8cc;
    padding: 48px 32px;
}

.como-funciona-inner {
    max-width: 780px;
    margin: 0 auto;
}

.como-funciona-titulo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b5e3c;
    margin-bottom: 24px;
    text-align: center;
}

.pasos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e0d8cc;
}

.paso {
    padding: 24px 20px;
    border-right: 1px solid #e0d8cc;
    background: #faf8f5;
}

.paso:last-child {
    border-right: none;
}

.paso-numero {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #e0d8cc;
    line-height: 1;
    margin-bottom: 10px;
}

.paso-titulo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3d2b1a;
    margin-bottom: 6px;
}

.paso p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Categoría header ── */
.categoria-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid #3d2b1a;
}

.categoria-header h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3d2b1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.categoria-header-linea {
    flex-grow: 1;
    height: 1px;
    background: #e0d8cc;
}

.categoria-bloque {
    margin-bottom: 56px;
}

/* ── Consulta item ── */
.consulta-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid #e8e2d9;
}

.consulta-item:first-of-type {
    border-top: 1px solid #e8e2d9;
}

.consulta-item-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    line-height: 1.3;
    border: none;
    padding: 0;
    margin-top: 0;
}

.consulta-item-body p {
    font-size: 14px;
    color: #4a3828;
    line-height: 1.75;
    margin: 0;
}

.consulta-item-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 4px;
    flex-shrink: 0;
}

.consulta-precio {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #3d2b1a;
    white-space: nowrap;
}

.consulta-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b5e3c;
    text-decoration: none;
    border-bottom: 1px solid rgba(139,94,60,0.3);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.consulta-btn:hover {
    color: #3d2b1a;
    border-bottom-color: #3d2b1a;
}

.consulta-item--expareja h3 { color: #b07040; }
.consulta-item--futuro h3 { color: #8b4a5a; }
.consulta-item--sentimientos h3 { color: #5a7a5a; }
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 968px) {
    .laura-header-nav-main {
        display: none;
    }

    .laura-menu-toggle {
        display: flex;
    }

    .laura-hero-container-conversion {
        flex-direction: column;
        text-align: center;
    }

    .laura-hero-photo-conversion {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .laura-hero-photo-conversion img {
        width: 300px;
        height: 300px;
    }

    .laura-servicios-grid {
        grid-template-columns: 1fr;
    }
    .laura-orientador-grid { grid-template-columns: 1fr; }
.laura-sobre-grid { grid-template-columns: 1fr; gap: 40px; }
.laura-videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .laura-header-photo-main {
        width: 90px;
        height: 90px;
    }

    .laura-header-name-main {
        font-size: 16px;
    }

    .laura-header-credentials-main {
        font-size: 12px;
    }

    main {
        padding: 32px 20px 48px;
    }

    h1 { font-size: 22px; }
    h2 { font-size: 17px; padding: 12px 16px; }
    h3 { font-size: 16px; }

    .laura-hero-conversion {
        padding: 48px 24px 32px;
    }

    .laura-hero-photo-conversion img {
        width: 250px;
        height: 250px;
    }

    .laura-hero-subtitle {
        font-size: 17px;
    }

    .laura-intro-section,
    .laura-servicios-section,
    .laura-footer {
        padding: 48px 24px;
    }

    .laura-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .laura-faq-section {
        padding: 48px 24px;
    }

    .laura-faq-item summary {
        font-size: 15px;
        padding: 16px 44px 16px 18px;
    }

    .laura-faq-answer {
        padding: 16px 18px 20px;
        font-size: 15px;
    }

    .laura-precio-box {
        padding: 24px 20px;
    }

    .laura-precio-box .laura-precio-importe {
        font-size: 1.9rem;
    }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table th,
    table td {
        font-size: 14px;
        padding: 10px;
    }
}
.laura-orientador-section,
.laura-sobre-section,
.laura-resenas-section { padding: 48px 24px; }
.laura-sobre-credenciales { flex-direction: row; flex-wrap: wrap; }
.laura-credencial-item { width: 48%; }


/* =========================================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================================= */
@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 6px 28px rgba(212, 175, 55, 0.7);
    }
}

.laura-whatsapp-floating {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    opacity: 1;
    visibility: visible;
    z-index: 3000;
}

.laura-whatsapp-floating.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.laura-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8952e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    border-bottom: none;
    color: #ffffff;
    font-size: 32px;
    animation: float-bounce 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
    transition: transform 0.2s ease;
}

.laura-whatsapp-link:hover {
    transform: scale(1.2) rotate(10deg);
    animation: none;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.laura-whatsapp-link:active {
    transform: scale(0.7);
}

/* Versión mobile */
@media (max-width: 768px) {
    .laura-whatsapp-floating {
        bottom: 40px;
        right: 24px;
        width: 56px;
        height: 56px;
    }

    .laura-whatsapp-link {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .laura-whatsapp-floating {
        bottom: 32px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .laura-whatsapp-link {
        font-size: 26px;
    }
}
/* =========================================================
   COMPONENTES DE CONTENIDO
   ========================================================= */

/* Intro box */
.laura-intro-box {
    background: #f0ebe3;
    border-left: 4px solid #d4af37;
    padding: 28px 28px 8px;
    margin: 32px 0 36px;
}

.laura-intro-box p {
    color: #2c2c2c;
}

/* Highlight box */
.laura-highlight-box {
    background: #f5efe7;
    border: 1px solid #ddd0bc;
    padding: 22px 26px;
    margin: 24px 0;
}

.laura-highlight-box p {
    margin-bottom: 10px;
    color: #2c2c2c;
}

.laura-highlight-box p:last-child {
    margin-bottom: 0;
}

/* Proceso list */
.laura-proceso-list {
    list-style: none;
    padding: 0;
    counter-reset: paso;
    margin: 20px 0 28px;
}

.laura-proceso-list li {
    counter-increment: paso;
    padding: 14px 16px 14px 56px;
    position: relative;
    margin-bottom: 10px;
    background: #f5efe7;
    border-left: 3px solid #e0d8cc;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.75;
}

.laura-proceso-list li::before {
    content: counter(paso);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 28px;
    height: 28px;
    background: #3d2b1a;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.laura-proceso-list li strong {
    color: #1a0a1f;
    display: block;
    margin-bottom: 4px;
}

/* Si/no list */
.laura-si-no-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.laura-si-no-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #2c2c2c;
    border-bottom: 1px solid #ede8e0;
    line-height: 1.7;
}

.laura-si-no-list li:last-child {
    border-bottom: none;
}

.laura-si-no-list li::before {
    content: none;
}

.laura-si-no-list li.si::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #4a7a4a;
}

.laura-si-no-list li.no::before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #b91c3c;
}
/* ── Cards de consulta (landings de servicio) ── */
.grid-amor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}

.grid-amor.one-card {
    grid-template-columns: 1fr;
    max-width: 380px;
}

.card-amor {
    padding: 22px 20px 20px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.card-amor:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-amor--expareja {
    background: #fdf0ea;
    border-color: #e8c4b0;
    border-top: 3px solid #c8895a;
}

.card-amor--futuro {
    background: #faeef0;
    border-color: #ddbec6;
    border-top: 3px solid #8b4a5a;
}

.card-amor--sentimientos {
    background: #eef4ee;
    border-color: #bfd4bf;
    border-top: 3px solid #5a7a5a;
}

.card-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-amor--expareja .card-tag { color: #c8895a; }
.card-amor--futuro .card-tag { color: #8b4a5a; }
.card-amor--sentimientos .card-tag { color: #5a7a5a; }

.card-amor p {
    font-size: 14px;
    color: #4a3828;
    line-height: 1.72;
    margin-bottom: 18px;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a0a1f !important;
    background: #d4af37;
    padding: 9px 16px;
    text-decoration: none;
    border: none !important;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.card-btn:hover {
    background: #c49b2a;
    border: none !important;
}

.categoria-intro {
    font-size: 15px;
    color: #5a4030;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.seccion-nota {
    background: #fff;
    border: 1px solid #e8e2d9;
    border-left: 3px solid #d4af37;
    padding: 16px 20px;
    margin: 20px 0 0;
    font-size: 14px;
    color: #5a4030;
    line-height: 1.7;
    font-style: italic;
}

.seccion-nota strong {
    color: #3d2b1a;
    font-style: normal;
}

.bloque-personalizada {
    background: #3d2b1a;
    padding: 40px 32px;
    margin-top: 56px;
    text-align: center;
}

.bloque-personalizada h2 {
    background: transparent;
    color: #d4af37;
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
    font-size: 18px;
}

.bloque-personalizada p {
    color: #e8dcc8;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.bloque-personalizada a.cta-final {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a0a1f !important;
    background: #d4af37;
    padding: 14px 36px;
    text-decoration: none;
    border: none !important;
    transition: background 0.2s ease;
}

.bloque-personalizada a.cta-final:hover {
    background: #c49b2a;
}
/* ── Bloque relacionado flotante ── */
.bloque-relacionado {
    float: right;
    width: 220px;
    margin: 0 0 24px 32px;
    border-top: 2px solid #3d2b1a;
}

.bloque-relacionado-titulo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3d2b1a;
    padding: 10px 0 8px;
    border-bottom: 1px solid #e0d8cc;
    margin-bottom: 0;
}

.bloque-relacionado-item {
    padding: 14px 0;
    border-bottom: 1px solid #e0d8cc;
}

.bloque-relacionado-item:last-child {
    border-bottom: none;
}

.bloque-relacionado-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a0a1f;
    line-height: 1.35;
    margin-bottom: 5px;
    font-family: Georgia, serif;
}

.bloque-relacionado-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

.bloque-relacionado-item a.relacionado-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b5e3c;
    text-decoration: none;
    border-bottom: 1px solid rgba(139,94,60,0.3);
}

.bloque-relacionado-item a.relacionado-btn:hover {
    color: #5a3a20;
    border-bottom-color: #5a3a20;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}
/* ── Lista editorial (orbitales) ── */
.lista-editorial {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.lista-editorial-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e8e2d9;
}

.lista-editorial-item:first-child {
    border-top: 1px solid #e8e2d9;
}

.lista-editorial-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #3d2b1a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    line-height: 1.3;
}

.lista-editorial-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.lista-editorial-item a.lista-editorial-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b5e3c;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(139,94,60,0.3);
    flex-shrink: 0;
}

.lista-editorial-item a.lista-editorial-btn:hover {
    color: #5a3a20;
    border-bottom-color: #5a3a20;
}

@media (max-width: 640px) {
    .grid-amor { grid-template-columns: 1fr; }
    .grid-amor.one-card { max-width: 100%; }
    .lista-editorial-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .page-header { padding: 40px 20px 32px; }
.page-header h1 { font-size: 22px; }
.como-funciona { padding: 32px 20px; }
.pasos { grid-template-columns: repeat(2, 1fr); }
.paso { border-bottom: 1px solid #e0d8cc; }
.paso:nth-child(2) { border-right: none; }
.paso:nth-child(3) { border-bottom: none; }
.consulta-item { grid-template-columns: 1fr; gap: 12px; }
.consulta-item-cta { flex-direction: row; align-items: center; gap: 16px; }
    .bloque-relacionado {
        float: none;
        width: 100%;
        margin: 0 0 24px 0;
    }
    .laura-sobre-float {
        float: none;
        width: 100%;
        margin: 0 0 24px 0;
    }
    .laura-sobre-float img {
        border-bottom: 1px solid #e0d8cc;
        border-right: none;
    }
}