/* Nosotros Page Styles */

/* Base Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* Hero Background */
.hero-bg {
    background-image: linear-gradient(rgba(0, 20, 50, 0.6), rgba(0, 20, 50, 0.6)), url('../imagen/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Modern parallax effect */
}

/* Text Effects */
.shadow-text {
    text-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}

/* About Us Specific Styles */
.about-hero-section {
    min-height: 500px;
}

.about-story-image {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
    max-height: 18rem;
    object-fit: cover;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.about-story-image:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3b82f6;
    transition: all 0.3s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pillar-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pillar-card p {
    color: #6b7280;
}

.feature-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
}

.cta-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px -3px rgba(251, 191, 36, 0.4);
}

/* Story Section Animation */
.story-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 400px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-image {
        width: 4rem;
        height: 4rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
}