/* ─── Breadcrumb ──────────────────────────────────────────────────────── */
.breadcrumb {
    padding: 0.8rem 2rem;
    background: #eef2e8;
    font-size: 0.85rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: #4d7b19;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #999;
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: #505630;
}


/* ─── Intro section ───────────────────────────────────────────────────── */
.landing-intro-section {
    padding: 5rem 2rem;
}

.landing-intro-container {
    max-width: 820px;
    margin: 0 auto;
}

.landing-intro-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.landing-intro-title .colored {
    color: #76B942;
}

.landing-intro-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ni-info-color);
    margin-bottom: 1rem;
}

.landing-zonas-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--info-color);
    background: #f0f5e8;
    border-left: 3px solid #76B942;
    padding: 0.9rem 1.2rem;
    border-radius: 0 6px 6px 0;
    margin-bottom: 1.75rem;
}


/* ─── FAQ section ─────────────────────────────────────────────────────── */
.faq-section {
    padding: 5rem 2rem;
    background: #eef2e8;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4d7b19;
    margin-bottom: 0.6rem;
}

.faq-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
}

.faq-title .colored {
    color: #76B942;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #76B942;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.6rem;
    line-height: 1.45;
}

.faq-answer {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--ni-info-color);
    margin: 0;
}


/* ─── Problema section (arbol + situacion) ───────────────────────────── */
.landing-problema-section {
    padding: 5rem 2rem;
    background: #eef2e8;
}

.landing-problema-container {
    max-width: 820px;
    margin: 0 auto;
}

.landing-problema-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.landing-problema-texto {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ni-info-color);
    margin-bottom: 1.5rem;
}

/* ─── Características (arbol template) ───────────────────────────────── */
.landing-caracteristicas {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.landing-caracteristicas li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.97rem;
    color: var(--ni-info-color);
    line-height: 1.6;
}

.landing-caracteristicas li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #76B942;
    border-radius: 50%;
    margin-top: 0.45rem;
}


/* ─── Pasos (situacion template) ─────────────────────────────────────── */
.pasos-section {
    padding: 5rem 2rem;
}

.pasos-container {
    max-width: 960px;
    margin: 0 auto;
}

.pasos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pasos-sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4d7b19;
    margin-bottom: 0.6rem;
}

.pasos-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
}

.pasos-title .colored { color: #76B942; }

.pasos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.paso-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.paso-numero {
    font-size: 2.4rem;
    font-weight: 800;
    color: #76B942;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.paso-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.45rem;
}

.paso-descripcion {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--ni-info-color);
}


/* ─── Precio factores (situacion template) ───────────────────────────── */
.precio-section {
    padding: 5rem 2rem;
    background: #eef2e8;
}

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

.precio-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.precio-title .colored { color: #76B942; }

.precio-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ni-info-color);
    margin-bottom: 2rem;
}

.precio-factores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.precio-factor {
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #76B942;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.precio-factor-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.35rem;
}

.precio-factor-texto {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--ni-info-color);
}

.precio-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #4d7b19;
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.precio-cta:hover {
    background: #3d6014;
    color: #fff;
}


/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .landing-intro-section,
    .faq-section,
    .landing-problema-section,
    .pasos-section,
    .precio-section {
        padding: 3rem 1.25rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .pasos-list,
    .precio-factores {
        grid-template-columns: 1fr;
    }
}
