/* =====================================================
   TAZDUCA - Sección Enlace a Nosotros
   Estilo para la sección resumida en index.html
   ===================================================== */

.nosotros-link-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.nosotros-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 20, 147, 0.15);
}

.nosotros-content {
    flex: 1;
}

.nosotros-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nosotros-content .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.nosotros-preview {
    margin-top: 30px;
}

.preview-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.preview-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.preview-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.preview-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nosotros-cta .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nosotros-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.nosotros-image {
    flex: 0 0 300px;
    position: relative;
}

.nosotros-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nosotros-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 40px;
    }
    
    .nosotros-image {
        flex: none;
        width: 250px;
        order: -1;
    }
    
    .preview-stats {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nosotros-link-section {
        padding: 60px 0;
    }
    
    .nosotros-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .nosotros-content .section-title {
        font-size: 2rem;
    }
    
    .nosotros-content .section-subtitle {
        font-size: 1.1rem;
    }
    
    .preview-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .preview-stats .stat-item {
        min-width: auto;
    }
    
    .preview-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .nosotros-image {
        width: 200px;
    }
    
    .nosotros-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .nosotros-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    .nosotros-content .section-title {
        font-size: 1.8rem;
    }
    
    .nosotros-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
}