/* =============================================
   ABOUT PAGE - The Instrument Path
   ============================================= */

/* ==================== HERO ==================== */
/* ==================== HERO ==================== */
.about-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 👇 AQUÍ VA TU IMAGEN DE FONDO */
    background: url('../images/about-hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

/* 👇 CAPA AZUL ENCIMA DE LA IMAGEN */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.85) 0%, rgba(30, 74, 142, 0.8) 100%);
    z-index: 2;
}


.about-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--tip-gold, #f5a623);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-hero .hero-badge i {
    font-style: normal;
    animation: bounce 2s ease-in-out infinite;
}

.about-hero .hero-badge i:last-child {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-hero .hero-title {
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.about-hero .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.about-hero .hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ==================== STORY SECTION ==================== */
.section-story {
    padding: 100px 0;
    background: #fff;
}

.story-images {
    position: relative;
    padding: 20px;
}

.story-images .image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.story-images .image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-images .image-main:hover img {
    transform: scale(1.05);
}

.story-images .image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.story-images .image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-images .floating-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--tip-gold, #f5a623);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.story-images .floating-badge .year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.story-images .floating-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.story-content {
    padding-left: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tip-blue, #1e4a8e);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(30, 74, 142, 0.3);
}

.section-badge i {
    color: var(--tip-gold, #f5a623);
    font-style: normal;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title.text-white {
    color: #fff;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-decoration.center {
    justify-content: center;
}

.title-decoration span {
    width: 50px;
    height: 2px;
    background: var(--tip-gold, #f5a623);
}

.title-decoration i {
    color: var(--tip-gold, #f5a623);
    font-style: normal;
    font-size: 1.2rem;
}

.title-decoration.light span {
    background: rgba(255, 255, 255, 0.5);
}

.title-decoration.light i {
    color: #fff;
}

.story-lead {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-lead strong {
    color: var(--tip-blue, #1e4a8e);
}

.story-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==================== MISSION & VISION ==================== */
.section-mission-vision {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    overflow: hidden;
}

.section-mission-vision .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-mission-vision .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(30, 74, 142, 0.03) 0%, transparent 50%);
}

.floating-note {
    position: absolute;
    color: var(--tip-blue, #1e4a8e);
    opacity: 0.06;
    font-style: normal;
    animation: floatNote 15s ease-in-out infinite;
}

.fn-1 { top: 10%; left: 5%; font-size: 4rem; }
.fn-2 { top: 50%; right: 8%; font-size: 3rem; animation-delay: 3s; }
.fn-3 { bottom: 15%; left: 10%; font-size: 3.5rem; animation-delay: 6s; }

@keyframes floatNote {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.mv-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(30, 74, 142, 0.15);
}

.mv-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tip-blue, #1e4a8e), #2d5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(30, 74, 142, 0.3);
}

.mv-card .card-icon i {
    font-size: 2rem;
    color: #fff;
    font-style: normal;
}

.mv-card.vision-card .card-icon {
    background: linear-gradient(135deg, var(--tip-gold, #f5a623), #e09100);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.mv-card h3 {
    font-family: 'Lobster', cursive;
    font-size: 2rem;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* ==================== VALUES ==================== */
.section-values {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 74, 142, 0.12);
    border-color: var(--tip-blue, #1e4a8e);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 74, 142, 0.1), rgba(30, 74, 142, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.value-card .value-icon span {
    font-size: 1.8rem;
    color: var(--tip-blue, #1e4a8e);
}

.value-card:hover .value-icon {
    background: var(--tip-gold, #f5a623);
    transform: scale(1.1) rotate(10deg);
}

.value-card:hover .value-icon span {
    color: #fff;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ==================== IMPACT STATS ==================== */
.section-impact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-impact .impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/impact-bg.jpg') center/cover no-repeat;
}

.section-impact .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.95) 0%, rgba(30, 74, 142, 0.9) 100%);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PROCESS ==================== */
.section-process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.process-timeline .process-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--tip-blue, #1e4a8e), var(--tip-gold, #f5a623));
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--tip-blue, #1e4a8e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(30, 74, 142, 0.4);
    position: relative;
    z-index: 2;
}

.process-step .step-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 74, 142, 0.15);
}

.process-step .step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.section-cta-about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2847 0%, #1e4a8e 100%);
    overflow: hidden;
}

.section-cta-about .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-cta-about .floating-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 4rem;
    font-style: normal;
}

.cn-1 { top: 20%; left: 10%; animation: floatNote 12s ease-in-out infinite; }
.cn-2 { bottom: 20%; right: 15%; animation: floatNote 12s ease-in-out infinite 3s; }

.section-cta-about .cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.section-cta-about h2 {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.section-cta-about p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tip-gold, #f5a623);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.btn-cta-primary:hover {
    background: #fff;
    color: var(--tip-blue, #1e4a8e);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary i {
    font-style: normal;
    font-size: 1.2rem;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: var(--tip-blue, #1e4a8e);
    border-color: #fff;
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    .values-grid,
    .stats-grid,
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline .process-line {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .about-hero .hero-title {
        font-size: 3rem;
    }
    
    .section-story,
    .section-mission-vision,
    .section-values,
    .section-impact,
    .section-process,
    .section-cta-about {
        padding: 80px 0;
    }
    
    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .story-images .image-main img {
        height: 380px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 350px;
    }

    .about-hero .hero-content {
        padding: 60px 20px;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-hero .hero-badge {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 8px 18px;
    }

    .section-title {
        font-size: 2rem;
    }

    .values-grid,
    .stats-grid,
    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .story-images {
        padding: 10px;
    }

    .story-images .image-main img {
        height: 280px;
    }

    .story-images .image-accent {
        width: 120px;
        height: 120px;
        right: -5px;
        bottom: -5px;
    }

    .story-images .floating-badge {
        width: 70px;
        height: 70px;
        top: -5px;
        left: -5px;
    }

    .story-images .floating-badge .year {
        font-size: 1.3rem;
    }

    .story-images .floating-badge .text {
        font-size: 0.65rem;
    }

    .section-cta-about {
        padding: 80px 0;
    }

    .section-cta-about h2 {
        font-size: 2.2rem;
    }

    .section-cta-about p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .mv-card {
        padding: 35px 25px;
    }

    .mv-card h3 {
        font-size: 1.6rem;
    }

    .mv-card p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-images .image-main img {
        height: 240px;
    }

    .section-cta-about h2 {
        font-size: 1.8rem;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }
}