/* ==========================================================================
   12. ESTILOS PARA LA LANDING PAGE DE VENTAS (PLAN 100 DÍAS)
   ========================================================================== */

.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, .challenge-section{
        padding: 4rem 0 !important;
    }

    .pricing-section-bg{
        padding-bottom: 2rem !important;
    }

    .about{
        padding: 5rem 0 3rem !important;
    }

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

.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;
    }
}




/* Caja de Exclusión / Advertencia Estética */
.exclusion-box {
    background-color: #fff;
    background-color: var(--bg-main);
    border: 1px solid #fbd38d;
    border-left: 5px solid #dd6b20;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin: 4rem auto;
    max-width: 850px;
    box-shadow: var(--shadow-sm);
}

.exclusion-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #dd6b20;
    margin-bottom: 1.25rem;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
}

.exclusion-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7b341e;
    margin-bottom: 1.5rem;
}

.exclusion-box .btn-link {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.exclusion-box .btn-link:hover {
    color: var(--accent-color);
}

/* Diagnóstico (PAS) y Empatía */
.pas-quote-card {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.15rem;
    line-height: 1.6;
}

.diagnostico-destacado {
    background-color: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    margin-top: 3.5rem;
}

/* Grid de Situaciones ("Para quién es esto") */
.situations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .situations-grid {
        grid-template-columns: 1fr;
    }
    .exclusion-box{
        padding: 2rem 1.5rem;
    }
}

.situation-card {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    display: flex;
    gap: 1.25rem;
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 56, 43, 0.15);
}

.situation-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

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

/* Reseñas Premium Formateadas */
.testimonial-premium {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.testimonial-google-tag {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-maps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #4285f4; /* Azul Google */
}

/* Acordeón de Preguntas Frecuentes (FAQ) */
.faq-accordion-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-accordion-item {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-accordion-item:hover {
    border-color: rgba(26, 56, 43, 0.15);
}

.faq-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.faq-accordion-trigger i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform var(--transition-smooth);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--transition-smooth);
}

.faq-accordion-inner {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-accordion-item.active {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.faq-accordion-item.active .faq-accordion-trigger i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

/* ==========================================================================
   13. ESTILOS DE DISEÑO DINÁMICO Y ELEMENTOS FLOTANTES (LANDING VENTA)
   ========================================================================== */

/* Layouts de grilla e imagen superpuesta */
.overlapping-images-container {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 2rem 0;
}

@media (max-width: 991px) {
    .overlapping-images-container {
        height: 350px;
    }
}

.img-frame-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    z-index: 2;
}

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

.img-frame-offset {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    z-index: 3;
}

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

.decor-sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.sparkle-1 { top: 10%; right: 20%; animation-delay: 0s; }
.sparkle-2 { bottom: 20%; left: -5%; animation-delay: 1.5s; }

/* Grid de problemas (Fórmula PAS) */
.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-box-card {
    background-color: var(--white);
    border: 1px dashed rgba(26, 56, 43, 0.15);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.problem-box-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.problem-card-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: rgba(26, 56, 43, 10%);
    line-height: 1;
}

.problem-card-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-card-title i {
    color: #dd6b20;
}

.problem-box-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.problem-card-yasmina{
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
}

@media (max-width: 768px) {
    .problem-card-yasmina{
        padding: 3rem 2rem;
    }
}

/* Caja Solución PAS Premium */
.solution-panel-highlight {
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.solution-panel-highlight::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px dashed var(--accent-color);
    border-radius: calc(var(--radius-lg) + 8px);
    pointer-events: none;
    opacity: 0.4;
}

.solution-panel-highlight > .solution-content{
    display: flex ;
    flex-direction: column;
    gap: 3rem;
    align-items: center; 
}

@media (max-width: 768px) {
    .solution-panel-highlight {
        padding: 2.5rem 2rem;
    }
}

/* Tarjetas de situación Premium */
.situation-card-premium {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.situation-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.situation-card-premium:hover::before {
    width: 8px;
    background-color: var(--primary-color);
}

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

.situation-card-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Tarjetas Qué Incluye Premium */
.deliverable-card-premium {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.deliverable-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 56, 43, 0.12);
}

.deliverable-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--primary-ultra-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition-elastic);
}

.deliverable-card-premium:hover .deliverable-icon-box {
    background-color: var(--primary-color);
    color: var(--bg-main);
    transform: scale(1.05) rotate(-3deg);
}

.deliverable-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.deliverable-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}


.incluye-section-bg {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=600');
    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) {
    .incluye-section-bg {
        background-attachment: fixed;
    }
}

.incluye-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-main); 
    opacity: .95;
    z-index: -1;
}

.incluye-grid{
    display: grid;
    grid-auto-flow: row;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 3rem;
}


/* ==========================================================================
   14. ESTILOS DE REDISEÑO DINÁMICO (ENFOQUE "TABLERO" Y MÁS IMÁGENES)
   ========================================================================== */

/* Cinta dorada decorativa (tape) */
.tape-decor {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 90px;
    height: 28px;
    background-color: rgba(201, 147, 59, 0.25);
    border-left: 1px dashed rgba(201, 147, 59, 0.4);
    border-right: 1px dashed rgba(201, 147, 59, 0.4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    z-index: 10;
}

/* Tarjetas desalineadas tipo pósit o notas de corcho */
.note-card-wrapper {
    perspective: 1000px;
}

.note-card-dynamic {
    background-color: #fffcf8;
    border: 1px dashed var(--accent-color);
    border-radius: var(--radius-md);
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-elastic);
    position: relative;
    overflow: visible; /* para permitir que la cinta sobresalga */
}

.note-card-dynamic:nth-child(odd) {
    transform: rotate(-1.2deg);
}

.note-card-dynamic:nth-child(even) {
    transform: rotate(1.2deg);
}

.note-card-dynamic:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg);
    box-shadow: var(--shadow-lg);
    border-style: solid;
    border-color: var(--primary-color);
    z-index: 5;
}

.note-card-dynamic p{
    margin-bottom: 0 !important;
}

/* Collage de Imágenes del Hero Dinámico */
.dynamic-collage-hero {
    position: relative;
    width: 100%;
    height: 540px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .dynamic-collage-hero {
        height: 400px;
        max-width: 500px;
    }
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10 !important;
    box-shadow: var(--shadow-lg);
}

/* Posiciones de collage */
.collage-item-main {
    top: 5%;
    left: 5%;
    width: 65%;
    height: 70%;
    z-index: 2;
    border: 1px solid var(--glass-border);
}

.collage-item-secondary {
    bottom: 5%;
    right: 5%;
    width: 50%;
    height: 55%;
    z-index: 3;
    border: 4px solid var(--white);
}

.collage-item-tertiary {
    top: 15%;
    right: 15%;
    width: 32%;
    height: 38%;
    z-index: 1;
    border: 1px solid var(--glass-border);
    opacity: 0.85;
}

/* Pegatinas flotantes en el hero */
.floating-sticker {
    position: absolute;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-md);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sticker-left {
    top: 50%;
    left: -20px;
    transform: translateY(-50%) rotate(-8deg);
    background-color: var(--primary-color);
    color: var(--bg-main);
    animation: float 5s ease-in-out infinite;
}

.sticker-right {
    bottom: 25%;
    right: -10px;
    transform: rotate(6deg);
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Línea de tiempo interactiva en Zig-Zag con Fotos */
.timeline-journey {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline-journey::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(201, 147, 59, 0.3);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-journey::before {
        left: 30px;
    }
}

.timeline-step-dynamic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
    position: relative;
}

.timeline-step-dynamic:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .timeline-step-dynamic {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 70px;
    }
}

/* Indicador circular central */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-main);
    border: 3px solid var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 30px;
        top: 2rem;
        transform: translate(-50%, 0);
    }
}

.timeline-step-dynamic:nth-child(even) .timeline-image-wrapper {
    order: 2;
}

.timeline-step-dynamic:nth-child(even) .timeline-content-card {
    order: 1;
}

@media (max-width: 768px) {
    .timeline-step-dynamic:nth-child(even) .timeline-image-wrapper {
        order: 1;
    }
    
    .timeline-step-dynamic:nth-child(even) .timeline-content-card {
        order: 2;
    }
}

.timeline-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
}

.timeline-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: calc(var(--radius-lg) - 10px);
    z-index: 2;
    pointer-events: none;
}

.timeline-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.timeline-step-dynamic:hover .timeline-image-wrapper img {
    transform: scale(1.05);
}

.timeline-content-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    position: relative;
}

.timeline-phase-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-phase-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-phase-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Recuadro de Comparación Estilo Ticket / Factura */
.comparison-card {
    background-color: #fffdf9;
    border: 2px dashed rgba(26, 56, 43, 0.2);
    border-radius: var(--radius-md);
    padding: 3rem;
    max-width: 600px;
    margin: 4rem auto;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.comparison-card::before, .comparison-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    background-size: 16px 8px;
}

.comparison-card::before {
    top: -8px;
    background-image: linear-gradient(135deg, #fffdf9 25%, transparent 25%), linear-gradient(225deg, #fffdf9 25%, transparent 25%);
}

.comparison-header {
    text-align: center;
    border-bottom: 1px dashed rgba(26, 56, 43, 0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px dotted rgba(26, 56, 43, 0.1);

}

.comparison-row.total-row {
    border-top: 1px dashed var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.comparison-row.plan-comparison-row {
    color: var(--success);
    font-weight: 700;
}

span.comparison-price{
    min-width: 90px;
    text-align: right;
}

.comparison-footer-note {
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Avatares reales para los Testimonios */
.testimonial-avatar-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    flex-grow: 1;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: block;
}

.testimonial-author-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 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;
}

.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);
}

.pricing-section-bg .pricing-card.featured{
    padding: 4.5rem 3.5rem; 
    background-color: var(--white); 
    box-shadow: var(--shadow-lg); 
    border-radius: var(--radius-lg); 
    max-width: 700px;
    margin: 0 auto;
}

.pricing-features{
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    list-style: none;
    padding: 0;
}

.pricing-info-cafe{
    background-color: var(--bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.btn-precio{
    height: 55px; 
    font-size: 1.05rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem; 
    width: 100%;
    padding: 1rem;
}

@media (max-width: 768px) {

    .pricing-section-bg .pricing-card.featured{
        padding: 4.5rem 1.2rem 2.5rem;
    }

    .pricing-info-cafe{
        padding: 1.25rem 1rem;
    }

    .btn-precio i{
        display: none;
    }

    .checkout-secure-badge{
        text-align: center;
    }
    
    .comparison-card{
        padding: 2.5rem 1.2rem;
    }
}

.pricing-price{
    font-size: 4rem;
    margin: .5rem 0 2.5rem
}

/* CSS Mockup para representar los Entregables */
.bundle-mockup-card {
    background-color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin: 4rem auto;
    max-width: 850px;
    background-image: linear-gradient(180deg, #fffcf6 0%, var(--white) 100%);
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .mockup-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mockup-visual {
    position: relative;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hojas virtuales superpuestas simulan el material */
.mockup-sheet {
    position: absolute;
    width: 160px;
    height: 210px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    border: 1px solid rgba(26,56,43,0.08);
    transition: var(--transition-elastic);
}

.sheet-1 {
    transform: rotate(-6deg) translateX(-30px);
    z-index: 1;
    background-color: #f7f9f7;
}

.sheet-2 {
    transform: rotate(4deg) translateX(30px) translateY(10px);
    z-index: 2;
    border-top: 5px solid var(--primary-color);
}

.sheet-3 {
    transform: rotate(-1deg) translateY(-10px);
    z-index: 3;
    border-top: 5px solid var(--accent-color);
}

.bundle-mockup-card:hover .sheet-1 {
    transform: rotate(-12deg) translateX(-50px) translateY(-10px);
}

.bundle-mockup-card:hover .sheet-2 {
    transform: rotate(10deg) translateX(50px) translateY(20px);
}

.bundle-mockup-card:hover .sheet-3 {
    transform: scale(1.05) translateY(-15px);
}

.sheet-header-mock {
    height: 10px;
    width: 60px;
    background-color: rgba(26, 56, 43, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.sheet-line-mock {
    height: 6px;
    background-color: rgba(26, 56, 43, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.sheet-line-mock.short {
    width: 70%;
}


@media (max-width: 768px) {

    .faqs-content-section .section-header{
        margin-bottom: 2.5rem;
    }
    
    .faqs-content-section .faqs-accordion{
        margin-bottom: 2.5rem;
    }
}


