/* Sobre Nosotros Specific Styles */

/* Hero Section */
.sobre-hero {
    background: white;
    margin-top: 52px;
}

.hero-content {
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content .content-wrapper {
    color: white;
    padding: 80px 60px;
}

.hero-title {
   color: white;
   font-family: "lubaline", sans-serif;
   font-size: 138px;
    font-weight: 300;
    font-style: normal;
    line-height: 100px;
}

.hero-text {
     font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    width: 570px;
}

.hero-image {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                url(../images/HISTORIA.jpg) center/cover no-repeat;
    min-height: 600px;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(91, 141, 184, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(204, 132, 86, 0.05) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px;
}

.values-title {
    text-align: center;
     color: #252522;
   font-family: "lubaline", sans-serif;
   font-size: 112px;
    font-weight: 300;
    font-style: normal;
    line-height: 100px;
    margin-top: 52px;
    margin-bottom: 60px;
}

.values-divider {
    width: 300px;
    height: 3px;
    background: var(--primary-orange);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.value-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(204, 132, 86, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-header {
    background: var(--primary-orange);
    color: white;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.value-content {
    background: var(--primary-blue);
    color: white;
    padding: 30px 25px;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.value-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Work Section About */
.work-section-about {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.work-image-about {
    background: url('https://images.unsplash.com/photo-1568213816046-0ee1c42bd559?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 500px;
    position: relative;
}

.work-image-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(204, 132, 86, 0.1));
}

.work-content-about {
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    min-height: 500px;
}

.work-content-about .content-wrapper {
    color: white;
    padding: 60px 50px;
}

.work-content-about .section-title-orange {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 35px;
}

.work-text-about {
    font-size: 1.15rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content .content-wrapper {
        padding: 60px 40px;
    }
    
    .values-title {
        font-size: 2.5rem;
    }
    
    .values-divider {
        width: 200px;
    }
    
    .value-content {
        min-height: 200px;
        padding: 25px 20px;
    }
    
    .work-content-about .content-wrapper {
        padding: 40px 30px;
    }
    
    .work-content-about .section-title-orange {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 70px;
        line-height: 68px;
    }
    
    .hero-text {
        font-size: 0.875rem;
        width: fit-content;
    }

    .hero-image {
        min-height: 300px;
    }

    .values-section {
        padding: 10px;
    }
    .values-title {
        font-size: 100px;
    }
    
    .hero-text,
    .work-text-about {
        font-size: 1rem;
    }
    
    .value-header {
        font-size: 0.9rem;
        padding: 15px 20px;
    }
    
    .value-content p {
        font-size: 0.9rem;
    }
}