.section-header{
    max-width: none !important;
}

.section-cuerpo {
    padding: 3rem 0 0;
    text-align: center;
}

.section-cuerpo h4 {
    margin-bottom: .5rem !important;
    letter-spacing: .5px;
}


.inner-content-section, .challenge-section, .pricing-section-bg, .about{
    padding: 8rem 0 ;
}

@media (max-width: 768px) {
    .inner-content-section, .challenge-section, .pricing-section-bg, .about{
        padding: 4rem 0 ;
    }
}

.aviso-importante{
    padding-top: 0 !important;
}

.hero-scroll-indicator .scroll-text{
    color: var(--primary-color);
}
.hero-scroll-indicator .scroll-wheel{
    background-color: var(--primary-color);
}


/* ==========================================================================
   HERO DE VENTAS CON FONDO REALISTA PREMIUM
   ========================================================================== */

/* ==========================================================================
   HERO DE VENTAS CON FONDO REALISTA PREMIUM (CON DIFUMINADO SOLO EN FONDO)
   ========================================================================== */

.sales-hero-organic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 13rem 0 10rem 0; */
    overflow: hidden; /* Crucial: evita que el difuminado se desborde por los lados de la pantalla */
    background-color: #fbf9f5; /* Color crema de respaldo */
}

/* El truco maestro: El pseudo-elemento que aísla y difumina el fondo */
.sales-hero-organic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* Hereda automáticamente la imagen que le inyectamos con PHP desde el HTML */
    background-image: inherit; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* CONTROL DEL DIFUMINADO: Ajusta los píxeles a tu gusto (más px = más borroso) */
    filter: blur(5px); 
    
    /* Escalamos un 5% la imagen para eliminar las esquinas blancas/transparentes que genera el blur */
    transform: scale(1.05); 
    
    z-index: 1; /* Se queda al fondo de todo */
}

/* Forzamos a que el contenedor del texto flote por encima del fondo desenfocado */
.sales-hero-organic .container {
    position: relative;
    z-index: 2; /* Pasa por encima del z-index 1 del fondo */
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -5vh;
}

/* Envoltura central de texto optimizada (se mantiene intacta y nítida) */
.sales-hero-wrapper {
    text-align: center;
    /* max-width: 860px; */
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    
    /* Reducimos un pelín la opacidad del cristal ya que el fondo ya está borroso */
    background: rgba(251, 249, 245, 0.82); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    
    border-radius: 24px;
    border: 1px solid rgba(26, 56, 43, 0.05);
    box-shadow: 0 15px 45px rgba(26, 56, 43, 0.05);
}

/* Super título */
.sales-super-title {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c5441; /* Verde oliva intermedio */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

/* Título de Ventas */
.sales-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #1a382b; /* Tu verde bosque profundo corporativo */
    margin-bottom: 1.75rem;
    font-weight: 700;
}

/* El gancho del cambio de color (Sintonía con la Granada real) */
.sales-title span {
    color: #cb7134; /* El tono terracota/cálido de tu paleta */
}

/* Subtítulo o Descripción */
.sales-sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    line-height: 1.75;
    color: #3a4440; /* Charcoal orgánico de alto contraste */
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

/* Acciones */
.hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

/* Rediseño del botón Accent (Estilo cápsula premium) */
.btn-accent.sales-btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: #1a382b; /* Cambia a tu color fuerte para contrastar con el fondo luminoso */
    color: #ffffff !important;
    border: none;
    box-shadow: 0 6px 20px rgba(26, 56, 43, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-accent.sales-btn-large:hover {
    background-color: #cb7134; /* Transición premium hacia el terracota */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(203, 113, 52, 0.25);
}

/* Fila horizontal de elementos de seguridad y conversión */
.sales-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(26, 56, 43, 0.08);
    padding-top: 1.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.sales-trust-row span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c5441;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sales-trust-row span i {
    font-size: 1rem;
    color: #cb7134; /* Iconos resaltados en terracota */
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVE CONTROLADA
   ========================================================================== */
@media (max-width: 992px) {
    .sales-title {
        font-size: 2.8rem;
    }
    .sales-hero-wrapper {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .sales-hero-organic{
        padding: 6rem 0 6rem 0;
    }

    .sales-title {
        font-size: 2.2rem;
    }
    .sales-sub-title {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .btn-accent.sales-btn-large {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
    .btn-accent.sales-btn-large i{
        display: none;
    }
    .sales-trust-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        max-width: 260px;
        margin: 0 auto;
    }
}







/* 2. EL DIAGNÓSTICO (PAS) */
.pers-pas-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.pers-pas-grid {
    display: grid;
    grid-auto-flow: row;
    gap: 5rem;
    align-items: center;
}

.pers-pas-notes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

/* Estilos de Notas Pósit */
.qs-note-card {
    background-color: #fcf9f2;
    border: 1px dashed rgba(201, 147, 59, 0.4);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    position: relative;
    border-radius: var(--radius-sm);
    transform: rotate(-1deg);
    transition: var(--transition-elastic);
    max-width: 525px;
}

.qs-note-card:hover {
    transform: rotate(0deg) scale(1.01);
}

.qs-note-tape {
    width: 80px;
    height: 24px;
    background-color: rgba(201, 147, 59, 0.25);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qs-note-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qs-note-icon {
    color: #dd6b20;
}

.qs-note-stethoscope {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.pers-pas-solution {
    padding-left: 1rem;
}

.pers-solution-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pers-solution-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-color);
    line-height: 1.6;
}



/* 3. PARA QUIÉN ES ESTO */
.pers-inclusion-section {
    background-color: var(--bg-alt);
    padding: 8rem 0 1rem;
}

.pers-inclusion-container {
    max-width: 950px;
}

.pers-inclusion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.pers-inclusion-card {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.pers-inclusion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 56, 43, 0.12);
}

.pers-inclusion-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.pers-inclusion-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.pers-inclusion-highlight {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 4rem;
    font-weight: 600;
}

/* 4. FILTRO DE INCLUSIÓN */
.pers-filter-section {
    background-color: var(--bg-alt);
    padding: 4rem 0 8rem;
}

.pers-filter-box {
    background-color: #fff;
    border: 1px solid #fbd38d;
    border-left: 5px solid #dd6b20;
    border-radius: var(--radius-md);
    padding: 3rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.pers-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dd6b20;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.pers-filter-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #7b341e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pers-filter-subtitle {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pers-filter-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.pers-filter-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pers-filter-list li i {
    margin-top: 3px;
}

.pers-filter-alternative {
    border-top: 1px dotted rgba(26, 56, 43, 0.15);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.pers-filter-alternative p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* 5. SECCIÓN DE PRECIOS */
/* Sección de Precios con Fondo de Imagen completo */
.pricing-section-bg {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1540420773420-3366772f4999?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Para soporte completo en móviles */
    z-index: 1;
}

@media (min-width: 992px) {
    .pricing-section-bg {
        background-attachment: fixed;
    }
}

.pricing-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 56, 43, 0.93); /* Capa verde oscuro traslúcida */
    z-index: -1;
}

.pers-pricing-section {
    background-color: var(--bg-alt);
    padding: 8rem 0;
}

.pers-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 950px;
    margin: 4rem auto 0 auto;
    align-items: stretch;
}

.pers-pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pers-price {
    font-size: 3.5rem;
    margin-top: 1rem;
}

.pers-pricing-list {
    margin-bottom: 2.5rem !important;
}

.pers-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pers-pricing-list li i {
    margin-top: 4px;
}

.pricing-section-bg .section-header h2,
.pricing-section-bg .section-header p {
    color: var(--bg-main);
}

.pricing-section-bg .section-header span.hero-tagline {
    color: var(--accent-color);
}

/* Testimonios Internos */
.pers-testimonios-section {
    margin-top: 8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
}

.pers-testimonios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.pers-testimonio-card {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pers-testimonio-card .stars {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.testimonio-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonio-author {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* 6. MÉTODO Y OBJECIONES */
.pers-method-section {
    background-color: var(--bg-main);
    padding: 8rem 0;
}

.pers-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pers-method-card {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-smooth);
}

.pers-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pers-method-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(201, 147, 59, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.pers-method-card h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pers-method-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* 7. QUIÉN TE ACOMPAÑA */
.pers-about-section {
    background-color: var(--bg-alt);
    padding: 8rem 0;
}

.pers-about-greeting {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* 8. PREGUNTAS FRECUENTES */
.pers-faq-section {
    background-color: var(--bg-main);
    padding: 8rem 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .pers-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pers-hero {
        padding: 140px 0 80px 0;
        text-align: center;
    }
    
    .pers-hero-actions {
        display: flex;
        justify-content: center;
    }
    
    .pers-hero-badges-row {
        justify-content: center;
    }
    
    .pers-hero-collage {
        height: 380px;
        margin-top: 2rem;
    }
    
    .pers-collage-main {
        width: 240px;
        height: 300px;
    }
    
    .pers-collage-sub {
        width: 160px;
        height: 160px;
        left: 20%;
    }
    
    .pers-pas-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .pers-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pers-inclusion-grid {
        grid-template-columns: 1fr;
    }
    
    .pers-testimonios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pers-filter-box {
        padding: 2rem;
    }
    
    .pers-hero-collage {
        display: none; /* Hide collage on small mobile to improve layout readability */
    }
}


.faqs-content-section{
    background-color: var(--bg-alt);
}

@media (max-width: 768px) { 
    .faqs-accordion{
        margin-bottom: 2.5rem;
    }
}


@media (max-width: 768px) {    
    .pers-pas-section, .pers-inclusion-section, .pers-filter-section, .challenge-section, .pers-pricing-section, .pers-method-section{
        padding: 4rem 0 !important;
    }
    .pers-inclusion-section{
        padding-bottom: 1rem !important;
    }
    .pers-filter-section{
        padding-top: 3rem !important;
    }
    .pers-about-section{
        padding: 5rem 0 3rem !important;
    }

    .challenge-section .section-header{
        margin-bottom: 1rem;
    }

}