/* Neuro-Home-Tienda – bloque Formación y Materiales */

:root {
    --nht-primary: #0f5132;
    --nht-secondary: #133d2b;
    --nht-background: #f5f7f9;
    --nht-card-bg: #ffffff;
    --nht-radius-xl: 32px;
    --nht-shadow-soft: 0 24px 60px rgba(15, 81, 50, 0.08);
}

.nht-home-wrapper {
    padding: 6rem 1.5rem 5rem;
    background: var(--nht-background);
    display: flex;
    justify-content: center;
    text-align: center;
}

.nht-home-inner {
    max-width: 960px;
    margin: 0 auto;
}

.nht-home-header {
    margin-bottom: 3rem;
}

.nht-home-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nht-secondary);
    margin-bottom: 0.75rem;
}

.nht-home-title {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: var(--nht-secondary);
    margin: 0 0 0.75rem;
}

.nht-home-subtitle {
    max-width: 540px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 0.98rem;
}

.nht-home-card {
    max-width: 720px;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 3rem 2.5rem 2.75rem;
    background: var(--nht-card-bg);
    border-radius: 32px;
    border: 1px dashed rgba(15, 81, 50, 0.16);
    box-shadow: 0 18px 45px rgba(15, 81, 50, 0.04);
    position: relative;
}

.nht-home-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #ecf1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -56px auto 1.5rem;
}

.nht-home-icon-emoji {
    font-size: 1.6rem;
}

.nht-home-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--nht-secondary);
}

.nht-home-card-text {
    max-width: 540px;
    margin: 0 auto 1.75rem;
    font-size: 0.98rem;
    color: #6b7280;
}

.nht-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.4rem;
    border-radius: 999px;
    background: var(--nht-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.nht-home-button:hover,
.nht-home-button:focus {
    background: var(--nht-secondary);
    transform: translateY(-1px);
    box-shadow: var(--nht-shadow-soft);
}

@media (max-width: 768px) {
    .nht-home-wrapper {
        padding: 4rem 1.25rem 3.5rem;
    }

    .nht-home-card {
        padding: 2.4rem 1.75rem 2.3rem;
        border-radius: 24px;
    }
}
