/* ===== Página Institucional ===== */

.section-eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    margin-bottom: 1rem;
    background: rgba(242, 135, 5, 0.1);
    border: 1px solid rgba(242, 135, 5, 0.2);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-eyebrow--light {
    background: rgba(242, 226, 5, 0.1);
    border-color: rgba(242, 226, 5, 0.2);
    color: var(--primary-yellow);
}

.about-hero {
    position: relative;
    padding: 140px 0 80px;
    background: #0d0d0d;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(242, 135, 5, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 85%, rgba(242, 226, 5, 0.07) 0%, transparent 45%);
    pointer-events: none;
}

.about-hero .container { position: relative; z-index: 2; }

.about-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 640px;
}

.about-hero-title span {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-hero-stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-intro-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-intro-image:hover img {
    transform: scale(1.03);
}

.about-intro-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.65rem 1rem;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.about-intro-badge i {
    color: var(--primary-yellow);
    margin-right: 0.35rem;
}

.about-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-intro-content p {
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-intro-content p strong {
    color: var(--black);
}

.about-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.about-intro-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(242, 135, 5, 0.08);
    border: 1px solid rgba(242, 135, 5, 0.18);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.about-identity {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.about-identity-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.about-identity-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.about-identity-header p {
    color: var(--dark-gray);
    line-height: 1.65;
    margin: 0;
}

.about-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.identity-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.identity-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.identity-card:hover {
    box-shadow: 0 16px 40px rgba(242, 135, 5, 0.12);
    border-color: rgba(242, 135, 5, 0.2);
}

.identity-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(242, 135, 5, 0.15), rgba(242, 159, 5, 0.08));
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.identity-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.identity-card p,
.identity-card ul {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.65;
    margin: 0;
}

.identity-card ul {
    list-style: none;
    padding: 0;
}

.identity-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.identity-card li i {
    color: var(--accent-orange);
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

.about-timeline-section {
    padding: 100px 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.about-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(242, 135, 5, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-timeline-section .container { position: relative; z-index: 2; }

.about-timeline-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 3.5rem;
}

.about-timeline-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.about-timeline-header p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.about-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-yellow), var(--accent-orange));
    border-radius: 2px;
}

.timeline-entry {
    position: relative;
    padding: 0 0 2.5rem 2rem;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-entry.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    margin-left: -5px;
    background: var(--accent-orange);
    border: 3px solid #0d0d0d;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(242, 135, 5, 0.3);
}

.timeline-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-yellow);
    margin-bottom: 0.35rem;
}

.timeline-entry h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-entry p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    margin: 0;
}

.about-differentials {
    padding: 100px 0;
    background: #fff;
}

.about-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-stats-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
}

.about-stats-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease;
}

.about-stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-item:hover {
    background: rgba(242, 135, 5, 0.1);
}

.about-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.about-stat-item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.15rem;
}

.about-stat-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.about-promise-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.about-promise-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-promise-card p {
    color: var(--dark-gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.about-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: var(--dark-gray);
}

.about-promise-list li i {
    color: var(--accent-orange);
    margin-top: 0.2rem;
}

.about-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, #F28705 0%, #F29F05 50%, #F2E205 100%);
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-cta-copy h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0D0D0D;
    margin-bottom: 0.35rem;
}

.about-cta-copy p {
    color: rgba(13, 13, 13, 0.7);
    margin: 0;
    font-size: 1rem;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-btn--dark {
    background: #0D0D0D;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about-cta-btn--dark:hover {
    color: #fff;
    transform: translateY(-2px);
}

.about-cta-btn--ghost {
    background: rgba(13, 13, 13, 0.12);
    color: #0D0D0D;
    border: 1px solid rgba(13, 13, 13, 0.2);
}

.about-cta-btn--ghost:hover {
    color: #0D0D0D;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .about-hero { padding: 120px 0 64px; }
    .about-intro-grid,
    .about-identity-grid,
    .about-diff-grid { grid-template-columns: 1fr; }
    .about-intro-image { order: -1; }
    .about-cta-inner { flex-direction: column; text-align: center; }
    .about-cta-actions { justify-content: center; width: 100%; }
}

@media (max-width: 575.98px) {
    .about-intro,
    .about-identity,
    .about-timeline-section,
    .about-differentials { padding: 64px 0; }
    .about-identity-grid { gap: 1rem; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .about-cta-actions { flex-direction: column; width: 100%; }
    .about-cta-btn { justify-content: center; width: 100%; }
}
