/* ============================================
   PÁGINA QUIÉNES SOMOS
   ============================================ */

/* Hero Section */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 60%);
    position: relative;
    z-index: 10;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 10px 40px rgba(226, 145, 23, 0.3);
}

.about-hero-icon i {
    font-size: 3.5rem;
    color: #ffffff;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Introduction Section */
.about-intro-section {
    padding: 4rem 2rem;
    background: transparent;
}

.about-intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text {
    font-size: 1.125rem;
    color: #c0c0c0;
    line-height: 1.8;
    text-align: justify;
}

.intro-text strong {
    color: #e29117;
    font-weight: 700;
}

.intro-text-highlight {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(226, 145, 23, 0.1) 0%, rgba(61, 7, 59, 0.2) 100%);
    border: 2px solid rgba(226, 145, 23, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.3) 50%, transparent 100%);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-bottom: 4rem;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 25px rgba(123, 47, 247, 0.3);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.why-us-item {
    position: relative;
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(50, 9, 53, 0.4) 0%, #3D073B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.why-us-item:hover::before {
    opacity: 1;
}

.why-us-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(226, 145, 23, 0.1);
    line-height: 1;
}

.why-us-content {
    position: relative;
    z-index: 2;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.3);
    transition: transform 0.3s ease;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 25px rgba(123, 47, 247, 0.3);
}

.why-us-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why-us-description {
    font-size: 1.05rem;
    color: #c0c0c0;
    line-height: 1.7;
}

/* Responsive - 1400px */
@media (max-width: 1400px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 45vh;
    }
    
    .about-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .about-hero-icon i {
        font-size: 2.75rem;
    }
    
    .about-hero-title {
        font-size: 2.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro-section {
        padding: 3rem 1.5rem;
    }
    
    .about-intro-container {
        max-width: 80%;
    }
    
    .intro-text {
        font-size: 1.05rem;
    }
    
    .intro-text-highlight {
        font-size: 1.15rem;
        padding: 1.75rem;
    }
    
    .values-section,
    .why-us-section {
        padding: 5rem 1.5rem;
    }
    
    .values-container,
    .why-us-container {
        max-width: 80%;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .values-grid {
        gap: 1.75rem;
    }
    
    .value-card {
        padding: 2.25rem 1.75rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .value-title {
        font-size: 1.35rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .why-us-grid {
        gap: 2.5rem;
    }
    
    .why-us-item {
        padding: 2.25rem;
    }
    
    .why-us-number {
        font-size: 3.5rem;
    }
    
    .why-us-icon {
        width: 55px;
        height: 55px;
        font-size: 1.65rem;
    }
    
    .why-us-title {
        font-size: 1.35rem;
    }
    
    .why-us-description {
        font-size: 1rem;
    }
}

/* Responsive - 768px */
@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 1rem 2rem;
    }
    
    .about-hero-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-hero-icon i {
        font-size: 2.25rem;
    }
    
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-intro-section {
        padding: 2.5rem 1rem;
    }
    
    .about-intro-container {
        max-width: 100%;
    }
    
    .intro-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .intro-text-highlight {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .values-section,
    .why-us-section {
        padding: 4rem 1rem;
    }
    
    .values-container,
    .why-us-container {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-us-item {
        padding: 2rem 1.5rem;
    }
    
    .why-us-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
    
    .why-us-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .why-us-title {
        font-size: 1.25rem;
    }
    
    .why-us-description {
        font-size: 0.95rem;
    }
}

/* Responsive - 480px */
@media (max-width: 480px) {
    .about-hero-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-hero-icon i {
        font-size: 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .intro-text-highlight {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.75rem 1.25rem;
    }
    
    .why-us-item {
        padding: 1.75rem 1.25rem;
    }
    
    .why-us-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   FIX ESPECÍFICO PARA iOS SAFARI
   ============================================ */

@supports (-webkit-touch-callout: none) {
    .about-hero,
    .about-intro-section,
    .values-section,
    .why-us-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

