
.about-hero {
    padding: 90px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-500) 0%, #1a4d73 100%);
    border-bottom: 1px solid #e0e0e0;
}

.about-hero__container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-hero__content {
    color: #ffffff;
}

.about-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero__text {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.95;
}

.about-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.about-hero__image {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: border-color 0.25s ease;
}

.about-hero__image:hover {
    border-color: var(--accent-red);
}
.projects-section {
    padding: 70px 20px;
    background: #ffffff;
}

.projects-section__title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-700);
    margin-bottom: 44px;
    line-height: 1.25;
}

/* Pilares: mismo aspecto que inicio (home.css); sin doble borde tras Proyectos */
.main > .features.features--pillars {
    border-top: none;
    padding-top: 50px;
    padding-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-photo {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 24px rgba(12, 12, 12, 0.08);
    border: 3px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.project-photo__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-photo:hover,
.project-photo:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 18px 30px rgba(198, 40, 40, 0.35);
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 70px 20px 50px;
    }

    .about-hero__title {
        font-size: 2.2rem;
    }

    .about-hero__media {
        min-height: 240px;
        order: -1;
    }

    .about-hero__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 15px 40px;
    }

    .about-hero__title {
        font-size: 1.7rem;
    }

    .about-hero__media {
        min-height: 200px;
    }
}
