/* estilos para nosotros.html - usa variables definidas en main.css */

.about-hero {
    background: linear-gradient(90deg, rgba(120,3,11,0.92), rgba(120,3,11,0.75));
    color: white;
    padding: 48px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .about-container {
    text-align: center;
}

.about-hero h1 {
    margin: 0 0 8px 0;
    font-size: 42px;
    letter-spacing: 0.6px;
}

.about-hero .lead {
    margin: 0;
    opacity: 0.95;
    font-size: 16px;
}

.about-main {
    padding: 36px 16px 80px;
}

.intro p {
    max-width: 760px;
    margin: 0 auto 28px auto;
    color: var(--text);
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.feature {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .16s ease, box-shadow .16s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
}

.feature .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228,31,63,0.12), rgba(120,3,11,0.06));
    color: var(--accent);
    font-size: 26px;
}

.feature h3 {
    margin: 6px 0 8px 0;
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.cta {
    margin-top: 26px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--red-light);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .14s ease, box-shadow .14s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.site-footer {
    border-top: 1px solid #f0f0f0;
    padding: 18px 0 36px;
    margin-top: 40px;
    text-align: center;
}

@media (max-width:600px) {
    .about-hero h1 { font-size: 28px; }
    .feature { padding: 14px; }
    .feature .icon { width: 52px; height: 52px; font-size: 22px; }
}
