/* Página Nosotros */

.about-page .page-content {
    background: var(--home-bg, #f6f7f9);
}

.about-page-header {
    background: #fff;
    border-bottom: 1px solid #e8eaee;
    padding: 20px 0;
}

.about-page-header h1 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--home-text, #1f2937);
}

.about-page-header p {
    margin: 6px 0 0;
    color: var(--home-muted, #6b7280);
    font-size: 14px;
}

.about-intro {
    padding: 32px 0;
}

.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.about-intro-text h2 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--home-text, #1f2937);
}

.about-intro-text p {
    margin: 0 0 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.65;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eceef2;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-gallery-item--main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

.about-gallery-item:not(.about-gallery-item--main) {
    aspect-ratio: 4 / 3;
}

.about-values {
    padding: 0 0 40px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.about-value-card {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.about-value-card i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(239, 87, 48, 0.12);
    color: var(--home-accent, #ef5730);
    font-size: 18px;
    margin-bottom: 12px;
}

.about-value-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--home-text, #1f2937);
}

.about-value-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--home-muted, #6b7280);
}

.about-location {
    padding: 0 0 48px;
}

.about-location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-map-card {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.about-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 280px;
    background: #e5e7eb;
}

.about-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-contact-card {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.about-contact-card h2 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--home-text, #1f2937);
}

.about-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-contact-item i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f3f4f6;
    color: var(--home-accent, #ef5730);
    font-size: 16px;
}

.about-contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--home-text, #1f2937);
    margin-bottom: 2px;
}

.about-contact-item span,
.about-contact-item a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--home-muted, #6b7280);
    text-decoration: none !important;
}

.about-contact-item a:hover {
    color: var(--home-accent, #ef5730);
}

.about-contact-cta {
    margin-top: 20px;
}

.about-contact-cta .home-btn {
    width: 100%;
    justify-content: center;
}

.about-page .home-btn-ghost {
    background: #f3f4f6;
    color: var(--home-text, #1f2937) !important;
    border: 1px solid #e5e7eb;
}

.about-page .home-btn-ghost:hover {
    background: #e9ebef;
}

@media (min-width: 768px) {
    .about-intro-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-location-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
        align-items: start;
    }
}

@media (min-width: 992px) {
    .about-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-gallery {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .about-gallery-item--main {
        grid-column: 1;
        grid-row: 1 / span 2;
        aspect-ratio: auto;
        min-height: 100%;
    }
}
