/* =============================================================================
 * css/orozco-pages.css — secondary pages (nosotros, servicios, tasaciones,
 * contacto). Loaded AFTER css/orozco-2.css; only adds classes not present in
 * the shared design system.
 * ============================================================================= */

/* =============================================================================
 * PAGE HERO BAND
 * ============================================================================= */
.oro-page-hero {
    background: linear-gradient(120deg, var(--oro-primary) 0%, var(--oro-primary-2) 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
}
.oro-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .5rem;
}
.oro-page-hero .lead {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 0;
    max-width: 620px;
}
.oro-breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .55);
    margin-bottom: 1rem;
    font-size: .88rem;
}
.oro-breadcrumb a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.oro-breadcrumb a:hover { color: var(--oro-accent); }
.oro-breadcrumb .active { color: var(--oro-accent); }

/* =============================================================================
 * SECTION TINT (alternating background)
 * ============================================================================= */
.oro-section--tint { background: #fff; }

/* =============================================================================
 * NOSOTROS — team photo + member cards
 * ============================================================================= */
.oro-team-photo { width: 100%; height: auto; object-fit: cover; }

.oro-member-card {
    background: #fff;
    border-radius: var(--oro-radius);
    overflow: hidden;
    box-shadow: var(--oro-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}
.oro-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--oro-shadow-md);
}
.oro-member-card__photo {
    aspect-ratio: 370 / 400;
    overflow: hidden;
    background: var(--oro-primary);
}
.oro-member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.oro-member-card:hover .oro-member-card__photo img { transform: scale(1.08); }
.oro-member-card__body { padding: 1.1rem 1rem 1.25rem; text-align: center; }
.oro-member-card__body h3 {
    font-size: 1.02rem;
    margin-bottom: .2rem;
}
.oro-member-card__role {
    font-size: .85rem;
    color: #666f68;
    margin-bottom: .3rem;
}
.oro-member-card__mp {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--oro-primary-2);
    background: var(--oro-primary-tint-10);
    padding: .2rem .6rem;
    border-radius: 999px;
}

/* =============================================================================
 * SERVICIOS — larger service cards + international feature cards
 * ============================================================================= */
.oro-service-card--lg { text-align: left; padding: 2.25rem 1.75rem; }
.oro-service-card--lg .oro-service-card__icon { margin-bottom: 1.25rem; }

.oro-intl-feature {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--oro-radius);
    overflow: hidden;
    height: 100%;
}
.oro-intl-feature__media { aspect-ratio: 16 / 10; overflow: hidden; }
.oro-intl-feature__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.oro-intl-feature:hover .oro-intl-feature__media img { transform: scale(1.06); }
.oro-intl-feature__body { padding: 1.75rem; }
.oro-intl-feature__tag {
    color: var(--oro-accent);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.oro-intl-feature__body h3 { color: #fff; margin: .3rem 0 .75rem; }
.oro-intl-feature__body p { color: rgba(255, 255, 255, .8); margin-bottom: 1.25rem; }
.oro-intl-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: .5rem;
}
.oro-intl-strip img {
    width: 100%; height: 100px;
    object-fit: cover;
    border-radius: .5rem;
}

/* =============================================================================
 * TASACIONES — numbered steps + form + side contact
 * ============================================================================= */
.oro-step {
    background: #fff;
    border-radius: var(--oro-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--oro-shadow-sm);
}
.oro-step__num {
    width: 52px; height: 52px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--oro-primary);
    color: var(--oro-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--oro-font-serif);
    font-weight: 700;
    font-size: 1.3rem;
}
.oro-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.oro-step p { font-size: .9rem; color: #666f68; margin-bottom: 0; }

.oro-form-card { border-radius: var(--oro-radius); }

.oro-contact-side {
    background: var(--oro-primary);
    color: #fff;
    border-radius: var(--oro-radius);
    padding: 2rem 1.75rem;
    height: 100%;
}
.oro-contact-side h3 { color: #fff; margin-bottom: 1.25rem; }
.oro-contact-side__list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.1rem;
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
}
.oro-contact-side__list i { color: var(--oro-accent); margin-top: .15rem; }
.oro-contact-side__list a { color: #fff; text-decoration: none; }
.oro-contact-side__list a:hover { color: var(--oro-accent); }

/* =============================================================================
 * CONTACTO — info card + map
 * ============================================================================= */
.oro-contact-info-card {
    background: #fff;
    border-radius: var(--oro-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--oro-shadow-sm);
    height: 100%;
}
.oro-contact-info-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.oro-contact-info-card__list li:last-child { margin-bottom: 0; }
.oro-contact-info-card__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--oro-primary-tint-10);
    color: var(--oro-primary-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.oro-contact-info-card__list strong { display: block; margin-bottom: .2rem; }
.oro-contact-info-card__list p { color: #55605a; font-size: .92rem; }
.oro-contact-info-card__list a { color: var(--oro-primary-2); text-decoration: none; }
.oro-contact-info-card__list a:hover { color: var(--oro-primary); }

.oro-map-wrap {
    position: relative;
    width: 100%;
    padding-top: 40%;
    border-radius: var(--oro-radius);
    overflow: hidden;
}
.oro-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 767.98px) {
    .oro-map-wrap { padding-top: 75%; }
}
